[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / CodeGen / 20130221.ll
blob45414671081a49a8ba7e8f28a596282f1823771c
1 ; RUN: opt %loadPolly -polly-codegen -S < %s
2 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-S128"
4 define void @list_sequence(ptr %A) {
5 entry:
6   br label %for.body
8 for.body:
9   %i = phi i32 [ 0, %entry ], [ %i.inc, %for.body ]
10   %i.inc = add nsw i32 %i, 1
11   %cmp5 = icmp slt i32 %i.inc, 2
12   br i1 %cmp5, label %for.body, label %for.next
14 for.next:
15   store i32 %i.inc, ptr %A
16   br label %for.end
18 for.end:
19   ret void