From 52c2b1154c6b757bc819a1e45f5a5e93806598cb Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Tue, 27 May 2014 11:33:51 +0200 Subject: [PATCH] document isl_{set,map}_set_tuple_name Reported-by: Uday R Bondhugula Signed-off-by: Sven Verdoolaege --- doc/user.pod | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/user.pod b/doc/user.pod index 39edc7a6..c8fece25 100644 --- a/doc/user.pod +++ b/doc/user.pod @@ -1839,6 +1839,8 @@ or relation can be read off or set using the following functions. int isl_set_has_tuple_name(__isl_keep isl_set *set); const char *isl_set_get_tuple_name( __isl_keep isl_set *set); + __isl_give isl_set *isl_set_set_tuple_name( + __isl_take isl_set *set, const char *s); const char *isl_basic_map_get_tuple_name( __isl_keep isl_basic_map *bmap, enum isl_dim_type type); @@ -1850,6 +1852,9 @@ or relation can be read off or set using the following functions. const char *isl_map_get_tuple_name( __isl_keep isl_map *map, enum isl_dim_type type); + __isl_give isl_map *isl_map_set_tuple_name( + __isl_take isl_map *map, + enum isl_dim_type type, const char *s); As with C, the value returned points to an internal data structure. -- 2.11.4.GIT