diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-08 23:32:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-08 23:32:40 +0000 |
commit | 08ab4fdb598b0cf972a44b20340d538d2591d836 (patch) | |
tree | 2ffb90953b40a2c1cf49521e9fef21f5f8d35edb | |
parent | 0247656d0aaaee69ab20ff0ad56536bff38b3715 (diff) |
tweak this to pass on linux.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81273 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/dyn-stackalloc.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/dyn-stackalloc.ll b/test/CodeGen/X86/dyn-stackalloc.ll index 049a32cea7..8f21c5301f 100644 --- a/test/CodeGen/X86/dyn-stackalloc.ll +++ b/test/CodeGen/X86/dyn-stackalloc.ll @@ -1,8 +1,8 @@ -; RUN: llvm-as < %s | llc -march=x86 | not egrep {\\\$4294967289|-7\\(} -; RUN: llvm-as < %s | llc -march=x86 | egrep {\\\$4294967280|-16\\(} +; RUN: llvm-as < %s | llc -march=x86 | not egrep {\\\$4294967289|-7} +; RUN: llvm-as < %s | llc -march=x86 | egrep {\\\$4294967280|-16} ; RUN: llvm-as < %s | llc -march=x86-64 | grep {\\-16} -define void @t() { +define void @t() nounwind { A: br label %entry |