aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/alloca.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/alloca.ll')
-rw-r--r--test/CodeGen/ARM/alloca.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/alloca.ll b/test/CodeGen/ARM/alloca.ll
new file mode 100644
index 000000000000..f7e450f59324
--- /dev/null
+++ b/test/CodeGen/ARM/alloca.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-linux-gnu | \
+; RUN: grep {mov r11, sp}
+; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-linux-gnu | \
+; RUN: grep {mov sp, r11}
+
+define void @f(i32 %a) {
+entry:
+ %tmp = alloca i8, i32 %a ; <i8*> [#uses=1]
+ call void @g( i8* %tmp, i32 %a, i32 1, i32 2, i32 3 )
+ ret void
+}
+
+declare void @g(i8*, i32, i32, i32, i32)