2
0

constant-over-index.ll 965 B

123456789101112131415161718192021222324252627282930
  1. ; RUN: opt < %s -cfl-aa -aa-eval -print-all-alias-modref-info 2>&1 | FileCheck %s
  2. ; CFL AA currently returns PartialAlias, BasicAA returns MayAlias, both seem
  3. ; acceptable (although we might decide that we don't want PartialAlias, and if
  4. ; so, we should update this test case accordingly).
  5. ; CHECK: {{PartialAlias|MayAlias}}: double* %p.0.i.0, double* %p3
  6. ; %p3 is equal to %p.0.i.0 on the second iteration of the loop,
  7. ; so MayAlias is needed.
  8. define void @foo([3 x [3 x double]]* noalias %p) {
  9. entry:
  10. %p3 = getelementptr [3 x [3 x double]], [3 x [3 x double]]* %p, i64 0, i64 0, i64 3
  11. br label %loop
  12. loop:
  13. %i = phi i64 [ 0, %entry ], [ %i.next, %loop ]
  14. %p.0.i.0 = getelementptr [3 x [3 x double]], [3 x [3 x double]]* %p, i64 0, i64 %i, i64 0
  15. store volatile double 0.0, double* %p3
  16. store volatile double 0.1, double* %p.0.i.0
  17. %i.next = add i64 %i, 1
  18. %cmp = icmp slt i64 %i.next, 3
  19. br i1 %cmp, label %loop, label %exit
  20. exit:
  21. ret void
  22. }