summaryrefslogtreecommitdiff
path: root/isl_constraint.c
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2010-10-23 13:42:21 +0200
committerSven Verdoolaege <skimo@kotnet.org>2010-10-26 16:38:43 +0200
commit27b6c995aaab20bf3b51b4adbba4a465a48c231c (patch)
treec9af0d4632d04f484c6ca72a7da575ab7db828f3 /isl_constraint.c
parenta7925d1b317c04bbe41c0b59d70dd12f2f1a8174 (diff)
downloadisl-27b6c995aaab20bf3b51b4adbba4a465a48c231c.tar.gz
isl-27b6c995aaab20bf3b51b4adbba4a465a48c231c.tar.bz2
isl-27b6c995aaab20bf3b51b4adbba4a465a48c231c.zip
rename isl_map_remove to isl_map_remove_dims
The new name is more consistent with other functions and avoids confusion as to what is being added. Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
Diffstat (limited to 'isl_constraint.c')
-rw-r--r--isl_constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isl_constraint.c b/isl_constraint.c
index 9714842e..1cce16e9 100644
--- a/isl_constraint.c
+++ b/isl_constraint.c
@@ -876,7 +876,7 @@ int isl_basic_set_foreach_bound_pair(__isl_keep isl_basic_set *bset,
lower = isl_basic_set_constraint(isl_basic_set_copy(bset),
&bset->eq[i]);
upper = isl_constraint_copy(lower);
- context = isl_basic_set_remove(isl_basic_set_copy(bset),
+ context = isl_basic_set_remove_dims(isl_basic_set_copy(bset),
type, pos, 1);
if (!lower || !upper || !context)
goto error;