From: Sven Verdoolaege Date: Tue, 27 May 2014 09:33:51 +0000 (+0200) Subject: document isl_{set,map}_set_tuple_name X-Git-Tag: isl-0.14~132 X-Git-Url: https://repo.or.cz/w/isl.git/commitdiff_plain/52c2b1154c6b757bc819a1e45f5a5e93806598cb document isl_{set,map}_set_tuple_name Reported-by: Uday R Bondhugula Signed-off-by: Sven Verdoolaege --- 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.