[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / redundant.ll
blobe85352bc889fcdbcc6c980ae06c1ae94a91fc79f
1 ; RUN: opt %loadPolly -polly-print-simplify -disable-output < %s | FileCheck %s -match-full-lines
2 ; RUN: opt %loadNPMPolly "-passes=scop(print<polly-simplify>)" -disable-output -aa-pipeline=basic-aa < %s | FileCheck %s -match-full-lines
4 ; Remove redundant store (a store that writes the same value already
5 ; at the destination)
7 ; for (int j = 0; j < n; j += 1)
8 ;   A[0] = A[0];
10 define void @func(i32 %n, ptr noalias nonnull %A) {
11 entry:
12   br label %for
14 for:
15   %j = phi i32 [0, %entry], [%j.inc, %inc]
16   %j.cmp = icmp slt i32 %j, %n
17   br i1 %j.cmp, label %body, label %exit
19     body:
20       %val = load double, ptr %A
21       store double %val, ptr %A
22       br label %inc
24 inc:
25   %j.inc = add nuw nsw i32 %j, 1
26   br label %for
28 exit:
29   br label %return
31 return:
32   ret void
36 ; CHECK: Statistics {
37 ; CHECK:     Redundant writes removed: 1
38 ; CHECK:     Stmts removed: 1
39 ; CHECK: }
41 ; CHECK:      After accesses {
42 ; CHECK-NEXT: }