diff options
author | Dale Johannesen <dalej@apple.com> | 2010-06-03 21:57:48 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2010-06-03 21:57:48 +0000 |
commit | 127e5244a08111477e3e33427c24501a1506ff1b (patch) | |
tree | 1ac15db4bbefd65126ce455f2df4b7df59505742 /test | |
parent | 9452ce30bceb23f1675af6bc5ad9504cfbd35d93 (diff) | |
download | external_llvm-127e5244a08111477e3e33427c24501a1506ff1b.zip external_llvm-127e5244a08111477e3e33427c24501a1506ff1b.tar.gz external_llvm-127e5244a08111477e3e33427c24501a1506ff1b.tar.bz2 |
Remove tail call to preserve this test. A tail
call version will follow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/Thumb2/thumb2-call.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-call.ll b/test/CodeGen/Thumb2/thumb2-call.ll index 7dc6b26..8513cfb 100644 --- a/test/CodeGen/Thumb2/thumb2-call.ll +++ b/test/CodeGen/Thumb2/thumb2-call.ll @@ -22,6 +22,6 @@ define void @h() { ; LINUX: h: ; LINUX: blx r0 %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 } |