dont_reduce_bytes.ll 657 B

12345678910111213141516171819202122
  1. ; Don't reduce the byte access to P[i], at least not on targets that
  2. ; support an efficient 'mem[r1+r2]' addressing mode.
  3. ; RUN: opt < %s -loop-reduce -disable-output
  4. declare i1 @pred(i32)
  5. define void @test(i8* %PTR) {
  6. ; <label>:0
  7. br label %Loop
  8. Loop: ; preds = %Loop, %0
  9. %INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ] ; <i32> [#uses=2]
  10. %STRRED = getelementptr i8, i8* %PTR, i32 %INDVAR ; <i8*> [#uses=1]
  11. store i8 0, i8* %STRRED
  12. %INDVAR2 = add i32 %INDVAR, 1 ; <i32> [#uses=2]
  13. ;; cannot eliminate indvar
  14. %cond = call i1 @pred( i32 %INDVAR2 ) ; <i1> [#uses=1]
  15. br i1 %cond, label %Loop, label %Out
  16. Out: ; preds = %Loop
  17. ret void
  18. }