masked-iv.ll 753 B

1234567891011121314151617181920212223242526
  1. ; RUN: opt < %s -indvars -S > %t
  2. ; RUN: not grep trunc %t
  3. ; RUN: grep and %t | count 1
  4. ; Indvars should do the IV arithmetic in the canonical IV type (i64),
  5. ; and only use one truncation.
  6. define void @foo(i64* %A, i64* %B, i64 %n, i64 %a, i64 %s) nounwind {
  7. entry:
  8. %t0 = icmp sgt i64 %n, 0 ; <i1> [#uses=1]
  9. br i1 %t0, label %bb.preheader, label %return
  10. bb.preheader: ; preds = %entry
  11. br label %bb
  12. bb: ; preds = %bb, %bb.preheader
  13. %i.01 = phi i64 [ %t6, %bb ], [ %a, %bb.preheader ] ; <i64> [#uses=3]
  14. %t1 = and i64 %i.01, 255 ; <i64> [#uses=1]
  15. %t2 = getelementptr i64, i64* %A, i64 %t1 ; <i64*> [#uses=1]
  16. store i64 %i.01, i64* %t2, align 8
  17. %t6 = add i64 %i.01, %s ; <i64> [#uses=1]
  18. br label %bb
  19. return: ; preds = %entry
  20. ret void
  21. }