[llvm] r201951 - Make test more resilient against scheduling decisions.
Benjamin Kramer
benny.kra at googlemail.com
Sat Feb 22 12:14:03 PST 2014
Author: d0k
Date: Sat Feb 22 14:14:02 2014
New Revision: 201951
URL: http://llvm.org/viewvc/llvm-project?rev=201951&view=rev
Log:
Make test more resilient against scheduling decisions.
Should bring the atom buildbots back to life.
Modified:
llvm/trunk/test/CodeGen/X86/inalloca.ll
Modified: llvm/trunk/test/CodeGen/X86/inalloca.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/inalloca.ll?rev=201951&r1=201950&r2=201951&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/inalloca.ll (original)
+++ llvm/trunk/test/CodeGen/X86/inalloca.ll Sat Feb 22 14:14:02 2014
@@ -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
}
More information about the llvm-commits
mailing list