diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-07 22:14:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-07 22:14:41 +0000 |
commit | 542cd205d82f4d38208ea64aed56c38434381539 (patch) | |
tree | d8a02545e00939b780ef202e511611a26463054e /test | |
parent | 13c337ae0c3af6cadefd022baab370e558c00685 (diff) | |
download | external_llvm-542cd205d82f4d38208ea64aed56c38434381539.zip external_llvm-542cd205d82f4d38208ea64aed56c38434381539.tar.gz external_llvm-542cd205d82f4d38208ea64aed56c38434381539.tar.bz2 |
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')
-rw-r--r-- | test/Transforms/TailCallElim/move_alloca_for_tail_call.ll | 3 |
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 8246feb..b1fe721 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 ) |