summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/alloca.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-02-17 20:02:20 +0000
committerTanya Lattner <tonic@nondot.org>2008-02-17 20:02:20 +0000
commitf697c038834f36190d6d93353ea3b1fababe6faf (patch)
tree0d6ee48a1c954dd09ab948fd4da9acee2a1f3239 /llvm/test/CodeGen/ARM/alloca.ll
parent1f6520842c2873aff772a39d53582c469b4f399d (diff)
downloadbcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.tar.gz
bcm5719-llvm-f697c038834f36190d6d93353ea3b1fababe6faf.zip
Remove llvm-upgrade.
llvm-svn: 47238
Diffstat (limited to 'llvm/test/CodeGen/ARM/alloca.ll')
-rw-r--r--llvm/test/CodeGen/ARM/alloca.ll14
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/test/CodeGen/ARM/alloca.ll b/llvm/test/CodeGen/ARM/alloca.ll
index b98a674ce2e..f7e450f5932 100644
--- a/llvm/test/CodeGen/ARM/alloca.ll
+++ b/llvm/test/CodeGen/ARM/alloca.ll
@@ -1,13 +1,13 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mtriple=arm-linux-gnu | \
+; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-linux-gnu | \
; RUN: grep {mov r11, sp}
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mtriple=arm-linux-gnu | \
+; RUN: llvm-as < %s | llc -march=arm -mtriple=arm-linux-gnu | \
; RUN: grep {mov sp, r11}
-void %f(uint %a) {
+define void @f(i32 %a) {
entry:
- %tmp = alloca sbyte, uint %a
- call void %g( sbyte* %tmp, uint %a, uint 1, uint 2, uint 3 )
- ret void
+ %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(sbyte*, uint, uint, uint, uint)
+declare void @g(i8*, i32, i32, i32, i32)
OpenPOWER on IntegriCloud