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
28 lines
586 B
LLVM
28 lines
586 B
LLVM
; RUN: opt < %s -tailduplicate -taildup-threshold=2 -S | grep add | not grep uses=1
|
|
|
|
define i32 @test1(i1 %C, i32 %A, i32* %P) {
|
|
entry:
|
|
br i1 %C, label %L1, label %L2
|
|
L1: ; preds = %entry
|
|
store i32 1, i32* %P
|
|
br label %L2
|
|
L2: ; preds = %L1, %entry
|
|
%X = add i32 %A, 17 ; <i32> [#uses=1]
|
|
ret i32 %X
|
|
}
|
|
|
|
define i32 @test2(i1 %C, i32 %A, i32* %P) {
|
|
entry:
|
|
br i1 %C, label %L1, label %L2
|
|
L1: ; preds = %entry
|
|
store i32 1, i32* %P
|
|
br label %L3
|
|
L2: ; preds = %entry
|
|
store i32 7, i32* %P
|
|
br label %L3
|
|
L3: ; preds = %L2, %L1
|
|
%X = add i32 %A, 17 ; <i32> [#uses=1]
|
|
ret i32 %X
|
|
}
|
|
|