mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +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
18 lines
421 B
LLVM
18 lines
421 B
LLVM
; RUN: opt < %s -simplifycfg -disable-output
|
|
|
|
define void @test(i32* %ldo, i1 %c, i1 %d) {
|
|
bb9:
|
|
br i1 %c, label %bb11, label %bb10
|
|
bb10: ; preds = %bb9
|
|
br label %bb11
|
|
bb11: ; preds = %bb10, %bb9
|
|
%reg330 = phi i32* [ null, %bb10 ], [ %ldo, %bb9 ] ; <i32*> [#uses=1]
|
|
br label %bb20
|
|
bb20: ; preds = %bb20, %bb11
|
|
store i32* %reg330, i32** null
|
|
br i1 %d, label %bb20, label %done
|
|
done: ; preds = %bb20
|
|
ret void
|
|
}
|
|
|