[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / nocoalesce_readbetween.ll
blobada79dc18b878ab6e97d900327aec293bbe9ae31
1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-print-simplify -disable-output < %s | FileCheck -match-full-lines %s
3 ; Do not combine stores if there is a read between them.
4 ; Note: The read between is unused, so will be removed by markAndSweep.
5 ; However, searches for coalesces takes place before.
7 ; for (int j = 0; j < n; j += 1) {
8 ;   A[0] = 42.0;
9 ;   tmp = A[0];
10 ;   A[0] = 42.0;
11 ; }
13 define void @nocoalesce_readbetween(i32 %n, ptr noalias nonnull %A) {
14 entry:
15   br label %for
17 for:
18   %j = phi i32 [0, %entry], [%j.inc, %inc]
19   %j.cmp = icmp slt i32 %j, %n
20   br i1 %j.cmp, label %body, label %exit
22     body:
23       store double 42.0, ptr %A
24       %tmp = load double, ptr %A
25       store double 42.0, ptr %A
26       br label %inc
28 inc:
29   %j.inc = add nuw nsw i32 %j, 1
30   br label %for
32 exit:
33   br label %return
35 return:
36   ret void
40 ; CHECK: Statistics {
41 ; CHECK:     Overwrites removed: 0
42 ; CHECK:     Partial writes coalesced: 0
43 ; CHECK: }
45 ; CHECK:      After accesses {
46 ; CHECK-NEXT:     Stmt_body
47 ; CHECK-NEXT:             MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 0]
48 ; CHECK-NEXT:                 [n] -> { Stmt_body[i0] -> MemRef_A[0] };
49 ; CHECK-NEXT:            new: [n] -> { Stmt_body[i0] -> MemRef_A[0] : i0 >= 17 };
50 ; CHECK-NEXT:             MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 0]
51 ; CHECK-NEXT:                 [n] -> { Stmt_body[i0] -> MemRef_A[0] };
52 ; CHECK-NEXT:            new: [n] -> { Stmt_body[i0] -> MemRef_A[0] : i0 <= 16 };
53 ; CHECK-NEXT: }