1 ; Here we have a case where there are two loops and LICM is hoisting an
2 ; instruction from one loop into the other loop! This is obviously bad and
3 ; happens because preheader insertion doesn't insert a preheader for this
6 ; RUN: llvm-as < %s | opt -licm -adce -simplifycfg | llvm-dis | \
9 define i32 @main(i32 %argc) {
12 bb5: ; preds = %bb5, %0
13 %I = phi i32 [ 0, %0 ], [ %I2, %bb5 ] ; <i32> [#uses=1]
14 %I2 = add i32 %I, 1 ; <i32> [#uses=2]
15 %c = icmp eq i32 %I2, 10 ; <i1> [#uses=1]
16 br i1 %c, label %bb5, label %bb8
17 bb8: ; preds = %bb8, %bb5
18 %cann-indvar = phi i32 [ 0, %bb8 ], [ 0, %bb5 ] ; <i32> [#uses=0]
19 %X = add i32 %argc, %argc ; <i32> [#uses=1]
20 br i1 false, label %bb8, label %bb10