From 5416a806af7e1101523a1f73905b3b6f9030cc98 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 20 Feb 2015 12:13:00 +0100 Subject: [PATCH] isl_sample.c: sample_bounded: drop unused variable Detected by a scan_build on Polly. Signed-off-by: Sven Verdoolaege --- isl_sample.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/isl_sample.c b/isl_sample.c index e1b9e0e3..7dcd53fc 100644 --- a/isl_sample.c +++ b/isl_sample.c @@ -595,7 +595,6 @@ error: static struct isl_vec *sample_bounded(struct isl_basic_set *bset) { unsigned dim; - struct isl_ctx *ctx; struct isl_vec *sample; struct isl_tab *tab = NULL; isl_factorizer *f; @@ -620,8 +619,6 @@ static struct isl_vec *sample_bounded(struct isl_basic_set *bset) if (f->n_group != 0) return factored_sample(bset, f); isl_factorizer_free(f); - - ctx = bset->ctx; tab = isl_tab_from_basic_set(bset, 1); if (tab && tab->empty) { -- 2.11.4.GIT