[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / redundant_differentindex.ll
blob23531c24344f30c09fc8707a2cbb069638d676d7
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 ; A store that has a different index than the load it is storing is
5 ; not redundant.
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       %A_idx = getelementptr inbounds double, ptr %A, i32 %j
22       store double %val, ptr %A_idx
23       br label %inc
25 inc:
26   %j.inc = add nuw nsw i32 %j, 1
27   br label %for
29 exit:
30   br label %return
32 return:
33   ret void
37 ; CHECK: SCoP could not be simplified