From 28011352f1f9d3d4f1e14cad0610acde65572cdf Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Thu, 28 Jul 2016 15:42:51 +0200 Subject: [PATCH] drop isl_set_to_underlying_set This function was introduced in ffca595 (add isl_set_{from,to}_underlying_set, Thu Sep 18 20:36:22 2008 +0200) but does not appear to have ever been used, although it used to be exposed until 523e515 (hide internal isl_set functions, Tue Apr 28 15:54:37 2015 +0200). Signed-off-by: Sven Verdoolaege --- isl_map.c | 5 ----- isl_map_private.h | 1 - 2 files changed, 6 deletions(-) diff --git a/isl_map.c b/isl_map.c index 17b48481..06bef47c 100644 --- a/isl_map.c +++ b/isl_map.c @@ -5115,11 +5115,6 @@ error: return NULL; } -struct isl_set *isl_set_to_underlying_set(struct isl_set *set) -{ - return set_from_map(isl_map_underlying_set(set_to_map(set))); -} - /* Replace the space of "bmap" by "space". * * If the space of "bmap" is identical to "space" (including the identifiers diff --git a/isl_map_private.h b/isl_map_private.h index 56ab1db1..cb957fbe 100644 --- a/isl_map_private.h +++ b/isl_map_private.h @@ -162,7 +162,6 @@ __isl_give isl_map *isl_map_finalize(__isl_take isl_map *map); __isl_give isl_basic_set *isl_basic_set_from_underlying_set( __isl_take isl_basic_set *bset, __isl_take isl_basic_set *like); -__isl_give isl_set *isl_set_to_underlying_set(__isl_take isl_set *set); __isl_give isl_map *isl_map_realign(__isl_take isl_map *map, __isl_take isl_reordering *r); -- 2.11.4.GIT