diff options
| author | Dale Johannesen <dalej@apple.com> | 2010-06-04 00:03:37 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2010-06-04 00:03:37 +0000 |
| commit | 413e925fd2834685866175db64fed3bb62d4a1b2 (patch) | |
| tree | bf6fcf3518b548b002d5b5b4e228b8ce0630044c | |
| parent | aebde74bd1043e0ba04cd6efcd48905979395a9b (diff) | |
| download | external_llvm-413e925fd2834685866175db64fed3bb62d4a1b2.zip external_llvm-413e925fd2834685866175db64fed3bb62d4a1b2.tar.gz external_llvm-413e925fd2834685866175db64fed3bb62d4a1b2.tar.bz2 | |
Remove tail call. A tail call version will follow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105438 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | test/CodeGen/Thumb2/thumb2-ifcvt1.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-ifcvt1.ll b/test/CodeGen/Thumb2/thumb2-ifcvt1.ll index 1d26756..d842d4d 100644 --- a/test/CodeGen/Thumb2/thumb2-ifcvt1.ll +++ b/test/CodeGen/Thumb2/thumb2-ifcvt1.ll @@ -76,7 +76,7 @@ entry: br i1 %tmp1, label %cond_true, label %UnifiedReturnBlock cond_true: ; preds = %entry - tail call void @foo( i32 %b ) + call void @foo( i32 %b ) ret void UnifiedReturnBlock: ; preds = %entry |
