[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / CodeGen / stmt_split_no_dependence.ll
bloba395aa14b4c8abae1f9b14b9a2aa49b0c58bed9d
1 ; RUN: opt %loadPolly -polly-codegen -S < %s | FileCheck %s
3 ; CHECK:   store i32 %9, ptr %scevgep, align 4, !alias.scope !1, !noalias !4
4 ; CHECK:   store i32 %11, ptr %scevgep4, align 4, !alias.scope !4, !noalias !1
6 ;      void func(int *A, int *B){
7 ;        for (int i = 0; i < 1024; i+=1) {
8 ;      Stmt:
9 ;          A[i] = i;
10 ;          B[i] = i;
11 ;        }
12 ;      }
14 ; Function Attrs: noinline nounwind uwtable
15 define void @func(ptr %A, ptr %B) #0 {
16 entry:
17   br label %for.cond
19 for.cond:                                        ; preds = %for.inc, %entry
20   %i.0 = phi i32 [ 0, %entry ], [ %add, %for.inc ]
21   %cmp = icmp slt i32 %i.0, 1024
22   br i1 %cmp, label %for.body, label %for.end
24 for.body:                                        ; preds = %for.cond
25   br label %Stmt
27 Stmt:                                            ; preds = %for.body
28   %idxprom = sext i32 %i.0 to i64
29   %arrayidx = getelementptr inbounds i32, ptr %A, i64 %idxprom
30   store i32 %i.0, ptr %arrayidx, align 4, !polly_split_after !0
31   %idxprom1 = sext i32 %i.0 to i64
32   %arrayidx2 = getelementptr inbounds i32, ptr %B, i64 %idxprom1
33   store i32 %i.0, ptr %arrayidx2, align 4
34   br label %for.inc
36 for.inc:                                         ; preds = %Stmt
37   %add = add nsw i32 %i.0, 1
38   br label %for.cond
40 for.end:                                         ; preds = %for.cond
41   ret void
44 !0 = !{!"polly_split_after"}