From 4dab342ae5af2ca922fdc5b5a06eeac5e5ef5813 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 16 Aug 2008 16:55:47 +0200 Subject: [PATCH] isl_map_affine_hull: add missing cow --- isl_affine_hull.c | 1 + 1 file changed, 1 insertion(+) diff --git a/isl_affine_hull.c b/isl_affine_hull.c index 496b852..f2c6761 100644 --- a/isl_affine_hull.c +++ b/isl_affine_hull.c @@ -230,6 +230,7 @@ struct isl_basic_map *isl_map_affine_hull(struct isl_ctx *ctx, map->p[i] = isl_basic_map_align_divs(ctx, map->p[i], map->p[0]); for (i = 0; i < map->n; ++i) { + map->p[i] = isl_basic_map_cow(ctx, map->p[i]); map->p[i] = isl_basic_map_affine_hull(ctx, map->p[i]); map->p[i] = isl_basic_map_gauss(ctx, map->p[i], NULL); if (!map->p[i]) -- 2.7.4