diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-02-06 07:18:27 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-02-06 07:18:27 +0000 |
commit | 5a165de53c42063ab40b08cb81c29675db40ea78 (patch) | |
tree | 7f0848f654d3a49b2ccee7bb035cb77211bf0f29 /llvm/test/CodeGen/ARM/dyn-stackalloc.ll | |
parent | ea3308aef010bb63a1c08de213108dcd6aa9e96b (diff) | |
download | bcm5719-llvm-5a165de53c42063ab40b08cb81c29675db40ea78.tar.gz bcm5719-llvm-5a165de53c42063ab40b08cb81c29675db40ea78.zip |
Add a DYNAMIC_STACKALLOC test case.
llvm-svn: 33959
Diffstat (limited to 'llvm/test/CodeGen/ARM/dyn-stackalloc.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/dyn-stackalloc.ll | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/dyn-stackalloc.ll b/llvm/test/CodeGen/ARM/dyn-stackalloc.ll new file mode 100644 index 00000000000..450e7903f7a --- /dev/null +++ b/llvm/test/CodeGen/ARM/dyn-stackalloc.ll @@ -0,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) |