blob: 8fe5ebb7c5e8ed6df31c46ad4fe50f98cfce0e98 [file] [log] [blame]
Chris Lattner4f538502002-05-03 20:12:31 +00001; This is a basic sanity check for constant propogation. The add instruction
2; should be eliminated.
3
Chris Lattner50e86822003-06-28 23:23:34 +00004; RUN: as < %s | opt -constprop -die | dis | not grep add
Chris Lattner4f538502002-05-03 20:12:31 +00005
Chris Lattner50e86822003-06-28 23:23:34 +00006int %test(bool %B) {
Chris Lattner4f538502002-05-03 20:12:31 +00007 br bool %B, label %BB1, label %BB2
8BB1:
9 %Val = add int 0, 0
10 br label %BB3
11BB2:
12 br label %BB3
13BB3:
14 %Ret = phi int [%Val, %BB1], [1, %BB2]
15 ret int %Ret
Chris Lattner50e86822003-06-28 23:23:34 +000016}