Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / ScopInfo / aliasing_dead_access.ll
blobc9a1c07968a1b6a4188af6b02ce8232b05e52088
1 ; RUN: opt %loadPolly -polly-detect-unprofitable -polly-code-generator=isl -analyze -polly-scops < %s | FileCheck %s
3 ; Check that RTC generation does not die when accesses are dead.
5 ; CHECK: Alias Groups (0):
7 ;    void jd(int *A, int *B) {
8 ;      for (int i = 0; i < 1024; i++)
9 ;        for (int j = i; j < 0; j++)
10 ;          A[i] = B[i];
11 ;    }
13 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
15 define void @jd(i32* %A, i32* %B) {
16 entry:
17   br label %for.cond
19 for.cond:                                         ; preds = %for.inc6, %entry
20   %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc6 ], [ 0, %entry ]
21   %exitcond = icmp ne i64 %indvars.iv, 1024
22   br i1 %exitcond, label %for.body, label %for.end8
24 for.body:                                         ; preds = %for.cond
25   %tmp = trunc i64 %indvars.iv to i32
26   br label %for.cond1
28 for.cond1:                                        ; preds = %for.inc, %for.body
29   %j.0 = phi i32 [ %tmp, %for.body ], [ %inc, %for.inc ]
30   %cmp2 = icmp slt i32 %j.0, 0
31   br i1 %cmp2, label %for.body3, label %for.end
33 for.body3:                                        ; preds = %for.cond1
34   %arrayidx = getelementptr inbounds i32, i32* %B, i64 %indvars.iv
35   %tmp1 = load i32* %arrayidx, align 4
36   %arrayidx5 = getelementptr inbounds i32, i32* %A, i64 %indvars.iv
37   store i32 %tmp1, i32* %arrayidx5, align 4
38   br label %for.inc
40 for.inc:                                          ; preds = %for.body3
41   %inc = add nsw i32 %j.0, 1
42   br label %for.cond1
44 for.end:                                          ; preds = %for.cond1
45   br label %for.inc6
47 for.inc6:                                         ; preds = %for.end
48   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
49   br label %for.cond
51 for.end8:                                         ; preds = %for.cond
52   ret void