mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-06 19:31:13 +00: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
305 B
LLVM
20 lines
305 B
LLVM
; RUN: opt < %s -gvn -S | grep {DEAD = phi i32 }
|
|
|
|
define i32 @main(i32* %p) {
|
|
block1:
|
|
%z = load i32* %p
|
|
br i1 true, label %block2, label %block3
|
|
|
|
block2:
|
|
br label %block4
|
|
|
|
block3:
|
|
%b = bitcast i32 0 to i32
|
|
store i32 %b, i32* %p
|
|
br label %block4
|
|
|
|
block4:
|
|
%DEAD = load i32* %p
|
|
ret i32 %DEAD
|
|
}
|