blob: 48ef2595f2c3b5a6fc91ca458713128a39060ef1 [file] [log] [blame]
Dan Gohmanc1be92f2010-10-18 18:04:47 +00001; RUN: opt < %s -basicaa -aa-eval -print-all-alias-modref-info |& FileCheck %s
Dan Gohman72776d22009-05-27 01:48:27 +00002; PR4267
3
Michael J. Spencer17d39832010-08-30 15:08:02 +00004; CHECK: MayAlias: double* %p.0.i.0, double* %p3
5
Dan Gohman72776d22009-05-27 01:48:27 +00006; %p3 is equal to %p.0.i.0 on the second iteration of the loop,
7; so MayAlias is needed.
8
9define void @foo([3 x [3 x double]]* noalias %p) {
10entry:
11 %p3 = getelementptr [3 x [3 x double]]* %p, i64 0, i64 0, i64 3
12 br label %loop
13
14loop:
15 %i = phi i64 [ 0, %entry ], [ %i.next, %loop ]
16
17 %p.0.i.0 = getelementptr [3 x [3 x double]]* %p, i64 0, i64 %i, i64 0
18
Chris Lattnerd2bf4322011-11-27 06:54:59 +000019 store volatile double 0.0, double* %p3
20 store volatile double 0.1, double* %p.0.i.0
Dan Gohman72776d22009-05-27 01:48:27 +000021
22 %i.next = add i64 %i, 1
23 %cmp = icmp slt i64 %i.next, 3
24 br i1 %cmp, label %loop, label %exit
25
26exit:
27 ret void
28}