From: Sven Verdoolaege Date: Mon, 19 Apr 2010 08:38:54 +0000 (+0200) Subject: isl_convex_hull.c: modulo_affine_hull: drop redundant argument X-Git-Tag: isl-0.03~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6050e09254f540c5956fb245604fecdb44713a8;p=platform%2Fupstream%2Fisl.git isl_convex_hull.c: modulo_affine_hull: drop redundant argument --- diff --git a/isl_convex_hull.c b/isl_convex_hull.c index 1d56610..834d278 100644 --- a/isl_convex_hull.c +++ b/isl_convex_hull.c @@ -1806,7 +1806,7 @@ error: * convex hull of the transformed set and then add the equalities back * (after performing the inverse transformation. */ -static struct isl_basic_set *modulo_affine_hull(struct isl_ctx *ctx, +static struct isl_basic_set *modulo_affine_hull( struct isl_set *set, struct isl_basic_set *affine_hull) { struct isl_mat *T; @@ -1865,7 +1865,7 @@ struct isl_basic_map *isl_map_convex_hull(struct isl_map *map) if (!affine_hull) goto error; if (affine_hull->n_eq != 0) - bset = modulo_affine_hull(ctx, set, affine_hull); + bset = modulo_affine_hull(set, affine_hull); else { isl_basic_set_free(affine_hull); bset = uset_convex_hull(set);