Author: evancheng
Date: Thu Aug 16 18:51:28 2007
New Revision: 41134

URL: http://llvm.org/viewvc/llvm-project?rev=41134&view=rev
Log:
Update test: dynamic_stackalloc size *must* be rounded to ensure stack ptr be 
left in a valid state.

Modified:
    llvm/trunk/test/CodeGen/X86/alloca-align-rounding.ll

Modified: llvm/trunk/test/CodeGen/X86/alloca-align-rounding.ll
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/alloca-align-rounding.ll?rev=41134&r1=41133&r2=41134&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/alloca-align-rounding.ll (original)
+++ llvm/trunk/test/CodeGen/X86/alloca-align-rounding.ll Thu Aug 16 18:51:28 
2007
@@ -1,4 +1,5 @@
-; RUN: llvm-as < %s | llc -march=x86-64 | not grep and
+; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-apple-darwin | grep and | 
count 1
+; RUN: llvm-as < %s | llc -march=x86-64 -mtriple=i686-pc-linux | grep and | 
count 3
 
 declare void @bar(<2 x i64>* %n)
 
@@ -7,3 +8,9 @@
   call void @bar(<2 x i64>* %p)
   ret void
 }
+
+define void @foo2(i32 %h) {
+  %p = alloca <2 x i64>, i32 %h, align 32
+  call void @bar(<2 x i64>* %p)
+  ret void
+}


_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to