From d13c3c3e10694826ef3bf9926311579a9e055f43 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 25 Apr 2015 23:08:53 +0200 Subject: [PATCH] isl_input.c: basic_map_read: avoid use of isl_basic_map_empty_like_map This function will be removed in a subsequent commit. Signed-off-by: Sven Verdoolaege --- isl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_input.c b/isl_input.c index fc4ef307..99cf7e41 100644 --- a/isl_input.c +++ b/isl_input.c @@ -2701,7 +2701,7 @@ static __isl_give isl_basic_map *basic_map_read(__isl_keep isl_stream *s) "more than one disjunct", goto error); if (map->n == 0) - bmap = isl_basic_map_empty_like_map(map); + bmap = isl_basic_map_empty(isl_map_get_space(map)); else bmap = isl_basic_map_copy(map->p[0]); -- 2.11.4.GIT