| ; RUN: opt %loadNPMPolly '-passes=polly-import-jscop,print<polly-simplify>' -polly-import-jscop-postfix=transformed -polly-allow-nonaffine-loops -disable-output < %s | FileCheck %s -match-full-lines |
| ; Do not remove the store in region_entry. It can be executed multiple times |
| ; due to being part of a non-affine loop. |
| define void @notredundant_region_loop(i32 %n, ptr noalias nonnull %A) { |
| %j = phi i32 [0, %entry], [%j.inc, %inc] |
| %j.cmp = icmp slt i32 %j, %n |
| br i1 %j.cmp, label %body, label %exit |
| %val = fadd double 21.0, 21.0 |
| store double %val, ptr %A |
| %cmp = icmp eq i32 %sqr, 42 |
| br i1 %cmp, label %region_true, label %region_exit |
| %j.inc = add nuw nsw i32 %j, 1 |
| ; CHECK: SCoP could not be simplified |