From c7ee77714925ef2f5d5ce7c2cbb0f39171abc9ae Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 22 Feb 2014 20:14:02 +0000 Subject: [PATCH] Make test more resilient against scheduling decisions. Should bring the atom buildbots back to life. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201951 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/inalloca.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/CodeGen/X86/inalloca.ll b/test/CodeGen/X86/inalloca.ll index 84d694a1fb6..ac002863cf5 100644 --- a/test/CodeGen/X86/inalloca.ll +++ b/test/CodeGen/X86/inalloca.ll @@ -56,10 +56,10 @@ entry: %f2 = getelementptr %Foo* %b, i32 0, i32 1 store i32 13, i32* %f1 store i32 42, i32* %f2 -; CHECK: movl $13, (%[[REG]]) -; CHECK: movl $42, 4(%[[REG]]) +; CHECK-DAG: movl $13, (%[[REG]]) +; CHECK-DAG: movl $42, 4(%[[REG]]) call x86_thiscallcc void @thiscall_with_inalloca(i8* null, %Foo* inalloca %b) -; CHECK: xorl %ecx, %ecx +; CHECK-DAG: xorl %ecx, %ecx ; CHECK: calll _thiscall_with_inalloca ret void } -- 2.34.1