From 8d06f46bb7bdeed593fbc1ef88fa83ed8d7d7138 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 3 Mar 2014 19:15:58 +0100 Subject: [PATCH] PetScan::extract_affine(Expr *): stop taking into account nesting_enabled Since the previous commits, this method is no longer called with nesting_enabled set and it will never be called this way in the future. Signed-off-by: Sven Verdoolaege --- scan.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/scan.cc b/scan.cc index bce6fb5..3b21ef5 100644 --- a/scan.cc +++ b/scan.cc @@ -597,7 +597,6 @@ __isl_give isl_pw_aff *PetScan::extract_affine(Expr *expr) if (!pe) return NULL; pc = convert_assignments(ctx, assigned_value); - pc = pet_context_set_allow_nested(pc, nesting_enabled); pa = pet_expr_extract_affine(pe, pc); if (isl_pw_aff_involves_nan(pa)) { unsupported(expr); -- 2.11.4.GIT