1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

tweak test, add PR#

llvm-svn: 81158
This commit is contained in:
Chris Lattner 2009-09-07 22:14:41 +00:00
parent 1528b90211
commit 0ebc0d1c4a

View 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 )