From: Sven Verdoolaege Date: Fri, 26 Aug 2011 20:17:11 +0000 (+0200) Subject: isl_test.c: properly create set space X-Git-Tag: isl-0.08~128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61b56f884fb59b0970b87f846d6d819ee8a88601;p=platform%2Fupstream%2Fisl.git isl_test.c: properly create set space Signed-off-by: Sven Verdoolaege --- diff --git a/isl_test.c b/isl_test.c index 77d5cb9..73de7ca 100644 --- a/isl_test.c +++ b/isl_test.c @@ -1231,7 +1231,7 @@ void test_lex(struct isl_ctx *ctx) isl_space *dim; isl_map *map; - dim = isl_space_alloc(ctx, 0, 0, 0); + dim = isl_space_set_alloc(ctx, 0, 0); map = isl_map_lex_le(dim); assert(!isl_map_is_empty(map)); isl_map_free(map);