From 4f3c6ff1cb001bc1927813275c8caa0b37fcb2bc Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 23 May 2011 19:28:14 +0200 Subject: [PATCH] isl_convex_hull.c: remove unused swap_ineq Its last use was removed in 95e960e (isl_basic_map_convex_hull: use tableau to detect redundant constraints, Fri Feb 27 22:20:21 2009 +0100). Signed-off-by: Sven Verdoolaege --- isl_convex_hull.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/isl_convex_hull.c b/isl_convex_hull.c index 0bd82e6..b848ede 100644 --- a/isl_convex_hull.c +++ b/isl_convex_hull.c @@ -19,17 +19,6 @@ static struct isl_basic_set *uset_convex_hull_wrap_bounded(struct isl_set *set); -static void swap_ineq(struct isl_basic_map *bmap, unsigned i, unsigned j) -{ - isl_int *t; - - if (i != j) { - t = bmap->ineq[i]; - bmap->ineq[i] = bmap->ineq[j]; - bmap->ineq[j] = t; - } -} - /* Return 1 if constraint c is redundant with respect to the constraints * in bmap. If c is a lower [upper] bound in some variable and bmap * does not have a lower [upper] bound in that variable, then c cannot -- 2.7.4