mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 03:56:41 +00:00

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.
22 lines
428 B
LLVM
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
|
|
}
|