blob: 2ed9d5e47927844a29628faed16e225d427ea4b7 [file] [log] [blame]
Chris Lattnera1ab9592002-05-02 20:41:39 +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 -sccp | dis | not grep add
Chris Lattnera1ab9592002-05-02 20:41:39 +00005
Chris Lattner50e86822003-06-28 23:23:34 +00006int %test(bool %B) {
Chris Lattnera1ab9592002-05-02 20:41:39 +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}