[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / polly / test / Simplify / notredundant_region_middle.ll
blob84598746e0bbf7e05cb1bb9aa553360f091be0fc
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 ; Do not remove redundant stores in the middle of region statements.
5 ; The store in region_true could be removed, but in practice we do try to
6 ; determine the relative ordering of block in region statements.
8 ; for (int j = 0; j < n; j += 1) {
9 ;   double val = A[0];
10 ;   if (val == 0.0)
11 ;     A[0] = val;
12 ;   else
13 ;     A[0] = 0.0;
14 ; }
16 define void @notredundant_region(i32 %n, ptr noalias nonnull %A) {
17 entry:
18   br label %for
20 for:
21   %j = phi i32 [0, %entry], [%j.inc, %inc]
22   %j.cmp = icmp slt i32 %j, %n
23   br i1 %j.cmp, label %region_entry, label %exit
26     region_entry:
27       %val = load double, ptr %A
28       %cmp = fcmp oeq double %val, 0.0
29       br i1 %cmp, label %region_true, label %region_false
31     region_true:
32       store double %val, ptr %A
33       br label %region_exit
35     region_false:
36       store double 0.0, ptr %A
37       br label %region_exit
39     region_exit:
40       br label %inc
43 inc:
44   %j.inc = add nuw nsw i32 %j, 1
45   br label %for
47 exit:
48   br label %return
50 return:
51   ret void
55 ; CHECK: SCoP could not be simplified