blob: a3141c773155bf1aa3ab4fe5fba6d9df33a9ea68 [file] [log] [blame]
Zarko Todorovski7f7dac72021-11-24 21:56:49 -05001; This is a basic correctness check for constant propagation. The add
2; instruction should be eliminated.
Eric Christophercee313d2019-04-17 04:52:47 +00003
Bjorn Pettersson8ebb3ea2021-11-18 10:14:04 +01004; RUN: opt < %s -passes=sccp -S | not grep add
Eric Christophercee313d2019-04-17 04:52:47 +00005
6define i128 @test(i1 %B) {
7 br i1 %B, label %BB1, label %BB2
8BB1:
9 %Val = add i128 0, 1
10 br label %BB3
11BB2:
12 br label %BB3
13BB3:
14 %Ret = phi i128 [%Val, %BB1], [2, %BB2]
15 ret i128 %Ret
16}