Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / Isl / CodeGen / single_loop_one_iteration.ll
blobdefb217bd872cad31725113d28ae66278650ed23
1 ; RUN: opt %loadPolly -polly-detect-unprofitable -polly-no-early-exit -polly-ast -analyze < %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 < 1; i++)
14 ;    A[i] = 1;
16 ;  __sync_synchronize();
18 ;  if (A[0] == 1)
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=3]
38   %arrayidx3 = getelementptr [20 x i32], [20 x i32]* %A, i64 0, i64 %indvar ; <i32*> [#uses=1]
39   %exitcond = icmp ne i64 %indvar, 1              ; <i1> [#uses=1]
40   br i1 %exitcond, label %for.body, label %for.end
42 for.body:                                         ; preds = %for.cond
43   store i32 1, i32* %arrayidx3
44   br label %for.inc
46 for.inc:                                          ; preds = %for.body
47   %indvar.next = add i64 %indvar, 1               ; <i64> [#uses=1]
48   br label %for.cond
50 for.end:                                          ; preds = %for.cond
51   fence seq_cst
52   %arraydecay5 = getelementptr inbounds [20 x i32], [20 x i32]* %A, i32 0, i32 0 ; <i32*> [#uses=1]
53   %arrayidx6 = getelementptr inbounds i32, i32* %arraydecay5, i64 0 ; <i32*> [#uses=1]
54   %tmp7 = load i32* %arrayidx6                    ; <i32> [#uses=1]
55   %cmp8 = icmp eq i32 %tmp7, 1                    ; <i1> [#uses=1]
56   br i1 %cmp8, label %if.then, label %if.else
58 if.then:                                          ; preds = %for.end
59   br label %return
61 if.else:                                          ; preds = %for.end
62   br label %return
64 return:                                           ; preds = %if.else, %if.then
65   %retval.0 = phi i32 [ 0, %if.then ], [ 1, %if.else ] ; <i32> [#uses=1]
66   ret i32 %retval.0
69 ; CHECK: Stmt_for_body(0);