[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / overwritten_scalar.ll
blobd55ea7712c36565f66927e92f2a223775f1ed8f7
1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-print-simplify -disable-output < %s | FileCheck -match-full-lines %s
3 ; Remove identical writes
4 ; (two stores in the same statement that write the same value to the same
5 ; destination)
7 ; for (int j = 0; j < n; j += 1) {
8 ; body:
9 ;   val = 21.0 + 21.0;
10 ;   A[1] = val;
11 ;   A[1] = val;
13 ; user:
14 ;   A[0] = A[1];
15 ; }
17 define void @overwritten_scalar(i32 %n, ptr noalias nonnull %A) {
18 entry:
19   br label %for
21 for:
22   %j = phi i32 [0, %entry], [%j.inc, %inc]
23   %j.cmp = icmp slt i32 %j, %n
24   br i1 %j.cmp, label %body, label %exit
26     body:
27       %val = fadd double 21.0, 21.0
28       br label %user
30     user:
31       %phi = phi double [%val, %body]
32       %add = fadd double %val, %phi
33       store double %add, ptr %A
34       br label %inc
36 inc:
37   %j.inc = add nuw nsw i32 %j, 1
38   br label %for
40 exit:
41   br label %return
43 return:
44   ret void
48 ; CHECK: Statistics {
49 ; CHECK:     Overwrites removed: 1
50 ; CHECK: }
52 ; CHECK:      Stmt_body
53 ; CHECK-NEXT:     MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 1]
54 ; CHECK-NEXT:            [n] -> { Stmt_body[i0] ->  MemRef_val[] };
55 ; CHECK-NEXT:       new: [n] -> { Stmt_body[i0] -> MemRef_A[1] };
56 ; CHECK-NEXT: Stmt_user