llvm-project/polly/test/ScopInfo/wraping_signed_expr_7.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

43 lines
1.3 KiB
LLVM

; RUN: opt %loadNPMPolly '-passes=print<polly-function-scops>' -disable-output < %s 2>&1 | FileCheck %s
;
; CHECK: Invalid Context:
; CHECK: [N] -> { : N >= 129 }
;
; void foo(float *A, long N) {
; for (long i = 0; i < N;)
; if ((signed char)i++ < 100)
; A[i] += i;
; }
define void @foo(ptr %A, i64 %N) {
bb:
br label %bb1
bb1: ; preds = %bb11, %bb
%i.0 = phi i64 [ 0, %bb ], [ %tmp12, %bb11 ]
%tmp = icmp slt i64 %i.0, %N
br i1 %tmp, label %bb2, label %bb13
bb2: ; preds = %bb1
%tmp12 = add nuw nsw i64 %i.0, 1
%tmp3 = trunc i64 %i.0 to i8
%tmp4 = icmp slt i8 %tmp3, 100
br i1 %tmp4, label %bb5, label %bb10
bb5: ; preds = %bb2
%tmp6 = sitofp i64 %i.0 to float
%tmp7 = getelementptr inbounds float, ptr %A, i64 %i.0
%tmp8 = load float, ptr %tmp7, align 4
%tmp9 = fadd float %tmp8, %tmp6
store float %tmp9, ptr %tmp7, align 4
br label %bb10
bb10: ; preds = %bb5, %bb2
br label %bb11
bb11: ; preds = %bb10
br label %bb1
bb13: ; preds = %bb1
ret void
}