mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +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
19 lines
300 B
LLVM
19 lines
300 B
LLVM
; RUN: opt < %s -gvn -enable-load-pre -S | grep {%PRE = phi}
|
|
|
|
define i32 @test(i32* %p, i1 %C) {
|
|
block1:
|
|
br i1 %C, label %block2, label %block3
|
|
|
|
block2:
|
|
br label %block4
|
|
|
|
block3:
|
|
%b = bitcast i32 0 to i32
|
|
store i32 %b, i32* %p
|
|
br label %block4
|
|
|
|
block4:
|
|
%PRE = load i32* %p
|
|
ret i32 %PRE
|
|
}
|