Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / Isl / CodeGen / single_loop.ll
blob26721a09e8fcedc44db43106e95c8b1cfbdb7f03
1 ; RUN: opt %loadPolly -polly-detect-unprofitable -polly-no-early-exit -polly-ast -analyze < %s | FileCheck %s
3 ;#include <string.h>
4 ;#define N 1024
6 ;int main () {
7 ;  int i;
8 ;  int A[N];
10 ;  memset(A, 0, sizeof(int) * N);
12 ;  for (i = 0; i < N; i++) {
13 ;    A[i] = 1;
14 ;  }
16 ;  for (i = 0; i < N; i++)
17 ;    if (A[i] != 1)
18 ;      return 1;
20 ;  return 0;
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 [1024 x i32], align 4               ; <[1024 x i32]*> [#uses=3]
30   %arraydecay = getelementptr inbounds [1024 x i32], [1024 x i32]* %A, i32 0, i32 0 ; <i32*> [#uses=1]
31   %conv = bitcast i32* %arraydecay to i8*         ; <i8*> [#uses=1]
32   call void @llvm.memset.p0i8.i64(i8* %conv, i8 0, i64 4096, i32 1, i1 false)
33   br label %for.cond
35 for.cond:                                         ; preds = %for.inc, %entry
36   %indvar1 = phi i64 [ %indvar.next2, %for.inc ], [ 0, %entry ] ; <i64> [#uses=3]
37   %arrayidx = getelementptr [1024 x i32], [1024 x i32]* %A, i64 0, i64 %indvar1 ; <i32*> [#uses=1]
38   %exitcond = icmp ne i64 %indvar1, 1024          ; <i1> [#uses=1]
39   br i1 %exitcond, label %for.body, label %for.end
41 for.body:                                         ; preds = %for.cond
42   store i32 1, i32* %arrayidx
43   br label %for.inc
45 for.inc:                                          ; preds = %for.body
46   %indvar.next2 = add i64 %indvar1, 1             ; <i64> [#uses=1]
47   br label %for.cond
49 for.end:                                          ; preds = %for.cond
50   br label %for.cond5
52 for.cond5:                                        ; preds = %for.inc07, %for.end
53   %indvar = phi i64 [ %indvar.next, %for.inc07 ], [ 0, %for.end ] ; <i64> [#uses=3]
54   %arrayidx13 = getelementptr [1024 x i32], [1024 x i32]* %A, i64 0, i64 %indvar ; <i32*> [#uses=1]
55   %i.1 = trunc i64 %indvar to i32                 ; <i32> [#uses=1]
56   %cmp7 = icmp slt i32 %i.1, 1024                 ; <i1> [#uses=1]
57   br i1 %cmp7, label %for.body9, label %for.end20
59 for.body9:                                        ; preds = %for.cond5
60   %tmp14 = load i32* %arrayidx13                  ; <i32> [#uses=1]
61   %cmp15 = icmp ne i32 %tmp14, 1                  ; <i1> [#uses=1]
62   br i1 %cmp15, label %if.then, label %if.end
64 if.then:                                          ; preds = %for.body9
65   br label %return
67 if.end:                                           ; preds = %for.body9
68   br label %for.inc07
70 for.inc07:                                        ; preds = %if.end
71   %indvar.next = add i64 %indvar, 1               ; <i64> [#uses=1]
72   br label %for.cond5
74 for.end20:                                        ; preds = %for.cond5
75   br label %return
77 return:                                           ; preds = %for.end20, %if.then
78   %retval.0 = phi i32 [ 1, %if.then ], [ 0, %for.end20 ] ; <i32> [#uses=1]
79   ret i32 %retval.0
82 declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) nounwind
84 ; CHECK: for (int c0 = 0; c0 <= 1023; c0 += 1)
85 ; CHECK:   Stmt_for_body(c0);