From bac27be9ca1a84ab9b0bc8d93049ce9d0f9843c6 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Tue, 26 Apr 2016 11:51:31 +0200 Subject: [PATCH] scan.cc: extract_array: drop redundant local variable The local variable was made redundant in f3a22d7 (PetScan::extract_array: drop redundant isl_ctx argument, Wed Aug 19 12:13:19 2015 +0200). Signed-off-by: Sven Verdoolaege --- scan.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/scan.cc b/scan.cc index 432b592..fd6cee4 100644 --- a/scan.cc +++ b/scan.cc @@ -2281,11 +2281,9 @@ static struct pet_array *extract_array(__isl_keep pet_expr *access, __isl_keep pet_context *pc, void *user) { PetScan *ps = (PetScan *) user; - isl_ctx *ctx; isl_id *id; pet_array *array; - ctx = pet_expr_get_ctx(access); id = pet_expr_access_get_id(access); array = ps->extract_array(id, NULL, pc); isl_id_free(id); -- 2.11.4.GIT