[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / ForwardOpTree / forward_load.ll
blob86e3cb0203fa41bfb94ccdd49f1bff0374f652ec
1 ; RUN: opt %loadPolly -polly-print-optree -disable-output < %s | FileCheck %s -match-full-lines
2 ; RUN: opt %loadNPMPolly "-passes=scop(print<polly-optree>)" -disable-output < %s | FileCheck %s -match-full-lines
4 ; Rematerialize a load.
6 ; for (int j = 0; j < n; j += 1) {
7 ; bodyA:
8 ;   double val = B[j];
10 ; bodyB:
11 ;   A[j] = val;
12 ; }
14 define void @func(i32 %n, ptr noalias nonnull %A, ptr noalias nonnull %B) {
15 entry:
16   br label %for
18 for:
19   %j = phi i32 [0, %entry], [%j.inc, %inc]
20   %j.cmp = icmp slt i32 %j, %n
21   br i1 %j.cmp, label %bodyA, label %exit
23     bodyA:
24       %B_idx = getelementptr inbounds double, ptr %B, i32 %j
25       %val = load double, ptr %B_idx
26       br label %bodyB
28     bodyB:
29       %A_idx = getelementptr inbounds double, ptr %A, i32 %j
30       store double %val, ptr %A_idx
31       br label %inc
33 inc:
34   %j.inc = add nuw nsw i32 %j, 1
35   br label %for
37 exit:
38   br label %return
40 return:
41   ret void
45 ; CHECK: Statistics {
46 ; CHECK:     Known loads forwarded: 1
47 ; CHECK:     Operand trees forwarded: 1
48 ; CHECK:     Statements with forwarded operand trees: 1
49 ; CHECK: }
51 ; CHECK:      Stmt_bodyB
52 ; CHECK-NEXT:         ReadAccess :=       [Reduction Type: NONE] [Scalar: 0]
53 ; CHECK-NEXT:             ;
54 ; CHECK-NEXT:        new: [n] -> { Stmt_bodyB[i0] -> MemRef_B[i0] };
55 ; CHECK-NEXT:         MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 0]
56 ; CHECK-NEXT:             [n] -> { Stmt_bodyB[i0] -> MemRef_A[i0] };
57 ; CHECK-NEXT:         Instructions {
58 ; CHECK-NEXT:               %val = load double, ptr %B_idx, align 8
59 ; CHECK-NEXT:               store double %val, ptr %A_idx, align 8
60 ; CHECK-NEXT:         }