diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-02-22 20:14:02 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-02-22 20:14:02 +0000 |
commit | d20d1adfb865d249210fc41d2bf25e895781ce88 (patch) | |
tree | cd6994db108f05c78231758e6ede8890941ddd76 | |
parent | 60478662327f9eef3d02a1d3619f666451958c60 (diff) | |
download | bcm5719-llvm-d20d1adfb865d249210fc41d2bf25e895781ce88.tar.gz bcm5719-llvm-d20d1adfb865d249210fc41d2bf25e895781ce88.zip |
Make test more resilient against scheduling decisions.
Should bring the atom buildbots back to life.
llvm-svn: 201951
-rw-r--r-- | llvm/test/CodeGen/X86/inalloca.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/inalloca.ll b/llvm/test/CodeGen/X86/inalloca.ll index 84d694a1fb6..ac002863cf5 100644 --- a/llvm/test/CodeGen/X86/inalloca.ll +++ b/llvm/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 } |