tweak test, add PR#
authorChris Lattner <sabre@nondot.org>
Mon, 7 Sep 2009 22:14:41 +0000 (22:14 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 7 Sep 2009 22:14:41 +0000 (22:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81158 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/TailCallElim/move_alloca_for_tail_call.ll

index 8246feb11580c2658f3ef92792231d2aa67340df..b1fe7216089be749df6d4453874357420b14dd97 100644 (file)
@@ -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 )