Fix Polly
[polly-mirror.git] / test / ScopDetect / mod_ref_read_pointer.ll
blobc42f64780c825faf0cb93e6074e0a1ab00e75d4a
1 ; RUN: opt %loadPolly -basicaa -polly-detect -analyze \
2 ; RUN:  -polly-allow-modref-calls < %s | FileCheck %s -check-prefix=MODREF
3 ; RUN: opt %loadPolly -basicaa -polly-detect -analyze \
4 ; RUN:  < %s | FileCheck %s
6 ; CHECK-NOT: Valid Region for Scop: for.body => for.end
7 ; MODREF: Valid Region for Scop: for.body => for.end
9 ;    #pragma readonly
10 ;    int func(int *A);
12 ;    void jd(int *A) {
13 ;      for (int i = 0; i < 1024; i++)
14 ;        A[i + 2] = func(A);
15 ;    }
17 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
19 declare i32 @func(i32* %A) #1
21 define void @jd(i32* %A) {
22 entry:
23   br label %for.body
25 for.body:                                         ; preds = %entry, %for.inc
26   %i = phi i64 [ 0, %entry ], [ %i.next, %for.inc ]
27   %call = call i32 @func(i32* %A)
28   %tmp = add nsw i64 %i, 2
29   %arrayidx = getelementptr inbounds i32, i32* %A, i64 %tmp
30   store i32 %call, i32* %arrayidx, align 4
31   br label %for.inc
33 for.inc:                                          ; preds = %for.body
34   %i.next = add nuw nsw i64 %i, 1
35   %exitcond = icmp ne i64 %i.next, 1024
36   br i1 %exitcond, label %for.body, label %for.end
38 for.end:                                          ; preds = %for.inc
39   ret void
42 attributes #1 = { nounwind readonly }