[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / pass_existence.ll
blobfc5287ed2ee2abbeafd46caf8a53f5a75afe5a1d
1 ; RUN: opt %loadPolly -polly-print-simplify -disable-output < %s | FileCheck %s
2 ; RUN: opt %loadNPMPolly -disable-output "-passes=scop(print<polly-simplify>)" < %s -aa-pipeline=basic-aa < %s | FileCheck %s
4 ; Simple test for the existence of the Simplify pass.
6 ; for (int j = 0; j < n; j += 1)
7 ;   A[0] = 0.0;
9 define void @func(i32 %n, ptr noalias nonnull %A) {
10 entry:
11   br label %for
13 for:
14   %j = phi i32 [0, %entry], [%j.inc, %inc]
15   %j.cmp = icmp slt i32 %j, %n
16   br i1 %j.cmp, label %body, label %exit
18     body:
19       store double 0.0, ptr %A
20       br label %inc
22 inc:
23   %j.inc = add nuw nsw i32 %j, 1
24   br label %for
26 exit:
27   br label %return
29 return:
30   ret void
34 ; CHECK: SCoP could not be simplified