[llvm-commits] CVS: llvm/test/CodeGen/ARM/dyn-stackalloc.ll

Evan Cheng evan.cheng at apple.com
Mon Feb 5 23:18:43 PST 2007



Changes in directory llvm/test/CodeGen/ARM:

dyn-stackalloc.ll added (r1.1)
---
Log message:

Add a DYNAMIC_STACKALLOC test case.

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

 dyn-stackalloc.ll |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+)


Index: llvm/test/CodeGen/ARM/dyn-stackalloc.ll
diff -c /dev/null llvm/test/CodeGen/ARM/dyn-stackalloc.ll:1.1
*** /dev/null	Tue Feb  6 01:18:37 2007
--- llvm/test/CodeGen/ARM/dyn-stackalloc.ll	Tue Feb  6 01:18:27 2007
***************
*** 0 ****
--- 1,30 ----
+ ; RUN: llvm-as < %s | llc -march=arm &&
+ ; RUN: llvm-as < %s | llc -march=arm -enable-thumb &&
+ ; RUN: llvm-as < %s | llc -march=arm -enable-thumb | not grep "ldr sp"
+ 
+ 	%struct.state = type { i32, %struct.info*, float**, i32, i32, i32, i32, i32, i32, i32, i32, i32, i64, i64, i64, i64, i64, i64, i8* }
+ 	%struct.info = type { i32, i32, i32, i32, i32, i32, i32, i8* }
+ 
+ define void @f1(%struct.state* %v) {
+ 	%tmp6 = load i32* null
+ 	%tmp8 = alloca float, i32 %tmp6
+ 	store i32 1, i32* null
+ 	br i1 false, label %bb123.preheader, label %return
+ 
+ bb123.preheader:
+ 	br i1 false, label %bb43, label %return
+ 
+ bb43:
+ 	call fastcc void @f2( float* %tmp8, float* null, i32 0 )
+ 	%tmp70 = load i32* null
+ 	%tmp85 = getelementptr float* %tmp8, i32 0
+ 	call fastcc void @f3( float* null, float* null, float* %tmp85, i32 %tmp70 )
+ 	ret void
+ 
+ return:
+ 	ret void
+ }
+ 
+ declare fastcc void @f2(float*, float*, i32)
+ 
+ declare fastcc void @f3(float*, float*, float*, i32)






More information about the llvm-commits mailing list