Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / DeadCodeElimination / non-affine.ll
blob33b7ccc9550a33362d846d8fe8be9297bb752ca0
1 ; RUN: opt %loadPolly -polly-detect-unprofitable -polly-allow-nonaffine -polly-dce -polly-ast -analyze -polly-no-early-exit < %s | FileCheck %s
3 ; CHECK: for (int c0 = 0; c0 <= 1023; c0 += 1)
5 ;    void f(int *A) {
6 ;      for (int i = 0; i < 1024; i++)
7 ;        A[i % 2] = i;
8 ;    }
10 target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-n32-S64"
12 define void @f(i32* %A) {
13 entry:
14   br label %for.cond
16 for.cond:                                         ; preds = %for.inc, %entry
17   %i.0 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]
18   %exitcond = icmp ne i32 %i.0, 1024
19   br i1 %exitcond, label %for.body, label %for.end
21 for.body:                                         ; preds = %for.cond
22   %rem = srem i32 %i.0, 2
23   %arrayidx = getelementptr inbounds i32, i32* %A, i32 %rem
24   store i32 %i.0, i32* %arrayidx, align 4
25   br label %for.inc
27 for.inc:                                          ; preds = %for.body
28   %inc = add nsw i32 %i.0, 1
29   br label %for.cond
31 for.end:                                          ; preds = %for.cond
32   ret void