[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / dead_access_load.ll
blob1804613c0a7919a77def4063ad01dfd7fe30919c
1 ; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-print-simplify -disable-output < %s | FileCheck %s -match-full-lines
2 ; RUN: opt %loadNPMPolly -polly-stmt-granularity=bb "-passes=scop(print<polly-simplify>)" -disable-output -aa-pipeline=basic-aa < %s | FileCheck %s -match-full-lines
4 ; Remove a dead load-instruction
5 ; (an load whose result is not used anywhere)
7 ; for (int j = 0; j < n; j += 1) {
8 ;   double val = A[0];
9 ;   A[0] = 42.0;
10 ; }
12 define void @func(i32 %n, ptr noalias nonnull %A) {
13 entry:
14   br label %for
16 for:
17   %j = phi i32 [0, %entry], [%j.inc, %inc]
18   %j.cmp = icmp slt i32 %j, %n
19   br i1 %j.cmp, label %body, label %exit
21     body:
22       %val = load double, ptr %A
23       store double 42.0, ptr %A
24       br label %inc
26 inc:
27   %j.inc = add nuw nsw i32 %j, 1
28   br label %for
30 exit:
31   br label %return
33 return:
34   ret void
38 ; CHECK: Statistics {
39 ; CHECK:     Dead accesses removed: 1
40 ; CHECK:     Dead instructions removed: 1
41 ; CHECK: }
43 ; CHECK:      After accesses {
44 ; CHECK-NEXT:     Stmt_body
45 ; CHECK-NEXT:             MustWriteAccess :=  [Reduction Type: NONE] [Scalar: 0]
46 ; CHECK-NEXT:                 [n] -> { Stmt_body[i0] -> MemRef_A[0] };
47 ; CHECK-NEXT: }