[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / CodeGen / 20120316-InvalidCast.ll
blob8355cc51c4687ec17f0d3529b9c01949d51cf70f
1 ; RUN: opt %loadPolly -S -polly-codegen < %s | FileCheck %s
3 ; CHECK: polly.start
5 target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-a0:0-n32"
7 define void @fixup_gotos(ptr %A, ptr %data) nounwind {
8 entry:
9   br label %if
11 if:
12   %cond = icmp eq ptr %A, null
13   br i1 %cond, label %last, label %then
15 then:
16   store i32 1, ptr %data, align 4
17   br label %last
19 last:
20   ret void