blob: 3ae55d069b3de066b99788f958f496a347ff1c01 [file] [log] [blame]
Eric Christopher79cc1e32014-09-02 22:28:02 +00001; RUN: %lli %s > /dev/null
Danil Malyshev7c5db452012-05-17 21:07:47 +00002
3; test unconditional branch
4define i32 @main() {
5 br label %Test
6Test: ; preds = %Test, %0
7 %X = icmp eq i32 0, 4 ; <i1> [#uses=1]
8 br i1 %X, label %Test, label %Label
9Label: ; preds = %Test
10 ret i32 0
11}
12