[llvm-commits] CVS: llvm/test/Feature/alignment.ll

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 5 14:07:41 PST 2005



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
+ }






More information about the llvm-commits mailing list