aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-06-04 01:01:04 +0000
committerDale Johannesen <dalej@apple.com>2010-06-04 01:01:04 +0000
commit522a181d69810d9e0caa2d6ba7b1bb1418d7bf06 (patch)
tree1ad110d7bd1ada5ebffc075c7f673b982277b1ae /test/CodeGen
parenta8979a0e7b76273171e8592c5ca08bb6113923a5 (diff)
downloadexternal_llvm-522a181d69810d9e0caa2d6ba7b1bb1418d7bf06.zip
external_llvm-522a181d69810d9e0caa2d6ba7b1bb1418d7bf06.tar.gz
external_llvm-522a181d69810d9e0caa2d6ba7b1bb1418d7bf06.tar.bz2
Remove a tail call, and move some CHECKs to the
functions where they belong. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105449 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/ARM/call.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/ARM/call.ll b/test/CodeGen/ARM/call.ll
index c60b75b..c020b6f 100644
--- a/test/CodeGen/ARM/call.ll
+++ b/test/CodeGen/ARM/call.ll
@@ -8,16 +8,16 @@
declare void @g(i32, i32, i32, i32)
define void @f() {
-; CHECKV4: mov lr, pc
-; CHECKV5: blx
; CHECKELF: PLT
call void @g( i32 1, i32 2, i32 3, i32 4 )
ret void
}
define void @g.upgrd.1() {
+; CHECKV4: mov lr, pc
+; CHECKV5: blx
%tmp = load i32 ()** @t ; <i32 ()*> [#uses=1]
- %tmp.upgrd.2 = tail call i32 %tmp( ) ; <i32> [#uses=0]
+ %tmp.upgrd.2 = call i32 %tmp( ) ; <i32> [#uses=0]
ret void
}