llvm-project/polly/test/CodeGen/20120316-InvalidCast.ll
rahulana-quic e1f056f692
Reland "[polly] Port polly tests to use NPM" (#92918)
Even as the NPM has been in use by Polly for a while now, the majority
of the tests continue using the LPM passes. This patch ports the tests
to use the NPM passes (for example, by replacing a flag such as
-polly-detect with -passes=polly-detect following the NPM syntax for
specifying passes) with some exceptions for some missing features in the
new passes.

Relanding #90632.
2024-05-24 13:09:34 -07:00

22 lines
428 B
LLVM

; RUN: opt %loadNPMPolly -S -passes=polly-codegen < %s | FileCheck %s
; CHECK: polly.start
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"
define void @fixup_gotos(ptr %A, ptr %data) nounwind {
entry:
br label %if
if:
%cond = icmp eq ptr %A, null
br i1 %cond, label %last, label %then
then:
store i32 1, ptr %data, align 4
br label %last
last:
ret void
}