From c6fae33aa18ce6105c38ae49b785a5de7b17ee48 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Thu, 18 Aug 2016 16:42:18 +0200 Subject: [PATCH] isl_map_simplify.c: drop_more_redundant_divs: add memory management annotations Signed-off-by: Sven Verdoolaege --- isl_map_simplify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/isl_map_simplify.c b/isl_map_simplify.c index 03e9fe6c..31e02308 100644 --- a/isl_map_simplify.c +++ b/isl_map_simplify.c @@ -4087,8 +4087,8 @@ static isl_bool int_between_bounds(__isl_keep isl_basic_map *bmap, int i, * In particular, the value attained by the bound with unit coefficient * can serve as this intermediate value. */ -static struct isl_basic_map *drop_more_redundant_divs( - struct isl_basic_map *bmap, int *pairs, int n) +static __isl_give isl_basic_map *drop_more_redundant_divs( + __isl_take isl_basic_map *bmap, __isl_take int *pairs, int n) { isl_ctx *ctx; struct test_ineq_data data = { NULL, NULL }; -- 2.11.4.GIT