[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / ForwardOpTree / noforward_partial.ll
blob127ac9ff5f14f66a3f42f8084604031111cb0a38
1 ; RUN: opt %loadPolly -polly-print-optree -disable-output < %s | FileCheck %s -match-full-lines
3 ; Not the entire operand tree can be forwarded,
4 ; some scalar dependencies would remain.
6 ; for (int j = 0; j < n; j += 1) {
7 ; bodyA:
8 ;   double val = f() + 21.0;
10 ; bodyB:
11 ;   A[0] = val;
12 ; }
14 declare double @f(...) #1
16 define void @func(i32 %n, ptr noalias nonnull %A) {
17 entry:
18   br label %for
20 for:
21   %j = phi i32 [0, %entry], [%j.inc, %inc]
22   %j.cmp = icmp slt i32 %j, %n
23   br i1 %j.cmp, label %bodyA, label %exit
25     bodyA:
26       %v = call double (...) @f()
27       %val = fadd double %v, 21.0
28       br label %bodyB
30     bodyB:
31       store double %val, ptr %A
32       br label %inc
34 inc:
35   %j.inc = add nuw nsw i32 %j, 1
36   br label %for
38 exit:
39   br label %return
41 return:
42   ret void
45 attributes #1 = { nounwind readnone }
48 ; CHECK: ForwardOpTree executed, but did not modify anything