summaryrefslogtreecommitdiff
path: root/test/Transforms/TailCallElim
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-07 22:14:41 +0000
committerChris Lattner <sabre@nondot.org>2009-09-07 22:14:41 +0000
commit150be808e12c4c0426859828f89fc3de3defa003 (patch)
treed8a02545e00939b780ef202e511611a26463054e /test/Transforms/TailCallElim
parenta9b7738d13f412d356ca8d2fd136be53f2c49a8a (diff)
downloadllvm-150be808e12c4c0426859828f89fc3de3defa003.tar.gz
llvm-150be808e12c4c0426859828f89fc3de3defa003.tar.bz2
llvm-150be808e12c4c0426859828f89fc3de3defa003.tar.xz
tweak test, add PR#
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81158 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/TailCallElim')
-rw-r--r--test/Transforms/TailCallElim/move_alloca_for_tail_call.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Transforms/TailCallElim/move_alloca_for_tail_call.ll b/test/Transforms/TailCallElim/move_alloca_for_tail_call.ll
index 8246feb115..b1fe721608 100644
--- a/test/Transforms/TailCallElim/move_alloca_for_tail_call.ll
+++ b/test/Transforms/TailCallElim/move_alloca_for_tail_call.ll
@@ -1,10 +1,11 @@
; RUN: opt -tailcallelim %s | llvm-dis | FileCheck %s
+; PR615
declare void @bar(i32*)
define i32 @foo() {
; CHECK: i32 @foo()
-; CHECK: alloca
+; CHECK-NEXT: alloca
%A = alloca i32 ; <i32*> [#uses=2]
store i32 17, i32* %A
call void @bar( i32* %A )