[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / redundant_storebetween.ll
blobf624b6e5b995fc903b1bb2e1572e8aaa86a6a786
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 ; Don't remove store where there is another store to the same target
5 ; in-between them.
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       %A_idx = getelementptr inbounds double, ptr %A, i32 %j
21       %val = load double, ptr %A_idx
22       store double 0.0, ptr %A
23       store double %val, ptr %A_idx
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: SCoP could not be simplified