2003-02-27-PreheaderProblem.ll 796 B

123456789101112131415161718192021222324
  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
  4. ; case... bad.
  5. ; RUN: opt < %s -licm -loop-deletion -simplifycfg -S | \
  6. ; RUN: not grep "br "
  7. define i32 @main(i32 %argc) {
  8. ; <label>:0
  9. br label %bb5
  10. bb5: ; preds = %bb5, %0
  11. %I = phi i32 [ 0, %0 ], [ %I2, %bb5 ] ; <i32> [#uses=1]
  12. %I2 = add i32 %I, 1 ; <i32> [#uses=2]
  13. %c = icmp eq i32 %I2, 10 ; <i1> [#uses=1]
  14. br i1 %c, label %bb5, label %bb8
  15. bb8: ; preds = %bb8, %bb5
  16. %cann-indvar = phi i32 [ 0, %bb8 ], [ 0, %bb5 ] ; <i32> [#uses=0]
  17. %X = add i32 %argc, %argc ; <i32> [#uses=1]
  18. br i1 false, label %bb8, label %bb10
  19. bb10: ; preds = %bb8
  20. ret i32 %X
  21. }