1 ; RUN: opt %loadPolly -polly-simplify -analyze < %s | FileCheck %s
3 ; Simple test for the existence of the Simplify pass.
5 ; for (int j = 0; j < n; j += 1)
8 define void @func(i32 %n, double* noalias nonnull %A) {
13 %j = phi i32 [0, %entry], [%j.inc, %inc]
14 %j.cmp = icmp slt i32 %j, %n
15 br i1 %j.cmp, label %body, label %exit
18 store double 0.0, double* %A
22 %j.inc = add nuw nsw i32 %j, 1
33 ; CHECK: SCoP could not be simplified