[llvm-commits] [llvm] r68579 - /llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll

Dan Gohman gohman at apple.com
Tue Apr 7 17:51:11 PDT 2009


Author: djg
Date: Tue Apr  7 19:51:11 2009
New Revision: 68579

URL: http://llvm.org/viewvc/llvm-project?rev=68579&view=rev
Log:
Update this test for recent codegen improvements. CodeGen is now
using an lea in place of a mov and an add for this test.

Modified:
    llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll

Modified: llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll?rev=68579&r1=68578&r2=68579&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll (original)
+++ llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll Tue Apr  7 19:51:11 2009
@@ -1,5 +1,5 @@
-; RUN: llvm-as < %s | llc -march=x86 | not grep 4294967289
-; RUN: llvm-as < %s | llc -march=x86 | grep 4294967280
+; 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() {





More information about the llvm-commits mailing list