From 150be808e12c4c0426859828f89fc3de3defa003 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 7 Sep 2009 22:14:41 +0000 Subject: [PATCH] tweak test, add PR# 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Transforms/TailCallElim/move_alloca_for_tail_call.ll b/test/Transforms/TailCallElim/move_alloca_for_tail_call.ll index 8246feb1158..b1fe7216089 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 ; [#uses=2] store i32 17, i32* %A call void @bar( i32* %A ) -- 2.34.1