From 3fa6191b1df89e58855ada7e7d3051a2fe395e96 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 19 Oct 2016 17:03:43 +0200 Subject: [PATCH] deprecate isl_map_n_* The motivation for deprecating isl_map_n_* is the same as that for deprecating isl_basic_map_n_* in the previous commit. Since these functions were never documented, there should be no outside uses, or, if there are, they can easily be replaced by calls to isl_map_dim. Signed-off-by: Sven Verdoolaege --- include/isl/map.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/isl/map.h b/include/isl/map.h index f8620895..ed6b70e1 100644 --- a/include/isl/map.h +++ b/include/isl/map.h @@ -54,8 +54,11 @@ unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap); unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap, enum isl_dim_type type); +ISL_DEPRECATED unsigned isl_map_n_in(const struct isl_map *map); +ISL_DEPRECATED unsigned isl_map_n_out(const struct isl_map *map); +ISL_DEPRECATED unsigned isl_map_n_param(const struct isl_map *map); unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type); -- 2.11.4.GIT