mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
20 lines
429 B
LLVM
20 lines
429 B
LLVM
; RUN: opt < %s -inline -disable-output
|
|
|
|
define i32 @reload() {
|
|
reloadentry:
|
|
br label %A
|
|
|
|
A: ; preds = %reloadentry
|
|
call void @callee( )
|
|
ret i32 0
|
|
}
|
|
|
|
define internal void @callee() {
|
|
entry:
|
|
%X = alloca i8, i32 0 ; <i8*> [#uses=0]
|
|
%Y = bitcast i32 0 to i32 ; <i32> [#uses=1]
|
|
%Z = alloca i8, i32 %Y ; <i8*> [#uses=0]
|
|
ret void
|
|
}
|
|
|