Changes in directory llvm/test/Feature:

alignment.ll added (r1.1)
---
Log message:

new testcase


---
Diffs of the changes:  (+17 -0)

 alignment.ll |   17 +++++++++++++++++
 1 files changed, 17 insertions(+)


Index: llvm/test/Feature/alignment.ll
diff -c /dev/null llvm/test/Feature/alignment.ll:1.1
*** /dev/null   Sat Nov  5 16:07:40 2005
--- llvm/test/Feature/alignment.ll      Sat Nov  5 16:07:30 2005
***************
*** 0 ****
--- 1,17 ----
+ ; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
+ ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
+ ; RUN: diff %t1.ll %t2.ll
+ 
+ int *%test() {
+       %X = alloca int, align 4
+       %Y = alloca int, uint 42, align 16
+       %Z = alloca int, align 0
+       ret int *%X
+ }
+ 
+ int *%test2() {
+       %X = malloc int, align 4
+       %Y = malloc int, uint 42, align 16
+       %Z = malloc int, align 0
+       ret int *%X
+ }



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

Reply via email to