blob: f6ef1ab3f23b9f5baaacac7d91074bc4296f3422 [file] [log] [blame]
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001; This is a basic sanity check for constant propagation. The add instruction
Reid Spencerc6b9efa2007-04-13 22:33:10 +00002; should be eliminated.
3
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00004; RUN: opt < %s -sccp -S | not grep add
Reid Spencerc6b9efa2007-04-13 22:33:10 +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}