blob: 9796ad9b333e8d54d9d14f047defcd14922990d5 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; This is a basic sanity check for constant propogation. The add instruction
2; should be eliminated.
3
Dan Gohman1b4c27772009-09-08 16:50:01 +00004; RUN: opt %s -sccp | llvm-dis | not grep add
Dan Gohmanf17a25c2007-07-18 16:29:46 +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}