[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / polly / test / CodeGen / non-affine-dominance-generated-entering.ll
blobebf36acc8d962975c4300ab7e24c349bf7d6242d
1 ; RUN: opt %loadPolly -polly-codegen -S < %s | FileCheck %s
3 ; llvm.org/PR25439
4 ; Scalar reloads in the generated entering block were not recognized as
5 ; dominating the subregion blocks when there were multiple entering nodes. This
6 ; resulted in values defined in there (here: %cond used in subregionB_entry) not
7 ; being copied. We check whether it is reusing the reloaded scalar.
9 ; CHECK-LABEL: polly.stmt.subregionB_entry.exit:
10 ; CHECK:         store i1 %polly.cond, ptr %cond.s2a
12 ; CHECK-LABEL: polly.stmt.subregionB_entry.entry:
13 ; CHECK:         %cond.s2a.reload = load i1, ptr %cond.s2a
15 ; CHECK-LABEL: polly.stmt.subregionB_entry:
16 ; CHECK:         br i1 %cond.s2a.reload
18 define void @func(ptr %A) {
19 entry:
20   br label %subregionA_entry
22 subregionA_entry:
23   %cond = phi i1 [ false, %entry ], [ true, %subregionB_exit ]
24   br i1 %cond, label %subregionA_if, label %subregionA_else
26 subregionA_if:
27   br label %subregionB_entry
29 subregionA_else:
30   br label %subregionB_entry
32 subregionB_entry:
33   store i32 0, ptr %A
34   br i1 %cond, label %subregionB_if, label %subregionB_exit
36 subregionB_if:
37   br label %subregionB_exit
39 subregionB_exit:
40   br i1 false, label %subregionA_entry, label %return
42 return:
43   ret void