Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / Isl / CodeGen / single_loop_zero_iterations.ll
blob7a2d903027e21b0018b4cf55f7d5160dfbda12c6
1 ; RUN: opt %loadPolly -polly-detect-unprofitable -polly-ast -analyze  -S < %s | FileCheck %s
3 ;#define N 20
5 ;int main () {
6 ;  int i;
7 ;  int A[N];
9 ;  A[0] = 0;
11 ;  __sync_synchronize();
13 ;  for (i = 0; i < 0; i++)
14 ;    A[i] = 1;
16 ;  __sync_synchronize();
18 ;  if (A[0] == 0)
19 ;    return 0;
20 ;  else
21 ;    return 1;
24 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
25 target triple = "x86_64-unknown-linux-gnu"
27 define i32 @main() nounwind {
28 entry:
29   %A = alloca [20 x i32], align 4                 ; <[20 x i32]*> [#uses=3]
30   %arraydecay = getelementptr inbounds [20 x i32], [20 x i32]* %A, i32 0, i32 0 ; <i32*> [#uses=1]
31   %arrayidx = getelementptr inbounds i32, i32* %arraydecay, i64 0 ; <i32*> [#uses=1]
32   store i32 0, i32* %arrayidx
33   fence seq_cst
34   br label %for.cond
36 for.cond:                                         ; preds = %for.inc, %entry
37   %indvar = phi i64 [ %indvar.next, %for.inc ], [ 0, %entry ] ; <i64> [#uses=2]
38   %arrayidx3 = getelementptr [20 x i32], [20 x i32]* %A, i64 0, i64 %indvar ; <i32*> [#uses=1]
39   br i1 false, label %for.body, label %for.end
41 for.body:                                         ; preds = %for.cond
42   store i32 1, i32* %arrayidx3
43   br label %for.inc
45 for.inc:                                          ; preds = %for.body
46   %indvar.next = add i64 %indvar, 1               ; <i64> [#uses=1]
47   br label %for.cond
49 for.end:                                          ; preds = %for.cond
50   fence seq_cst
51   %arraydecay5 = getelementptr inbounds [20 x i32], [20 x i32]* %A, i32 0, i32 0 ; <i32*> [#uses=1]
52   %arrayidx6 = getelementptr inbounds i32, i32* %arraydecay5, i64 0 ; <i32*> [#uses=1]
53   %tmp7 = load i32* %arrayidx6                    ; <i32> [#uses=1]
54   %cmp8 = icmp eq i32 %tmp7, 0                    ; <i1> [#uses=1]
55   br i1 %cmp8, label %if.then, label %if.else
57 if.then:                                          ; preds = %for.end
58   br label %return
60 if.else:                                          ; preds = %for.end
61   br label %return
63 return:                                           ; preds = %if.else, %if.then
64   %retval.0 = phi i32 [ 0, %if.then ], [ 1, %if.else ] ; <i32> [#uses=1]
65   ret i32 %retval.0
68 ; CHECK: for region: 'for.cond => for.end.region' in function 'main':
69 ; CHECK-NOT:   Stmt_for_body(0);