rename isl_map_identity_like to isl_map_identity_like_basic_map
authorSven Verdoolaege <skimo@kotnet.org>
Sun, 30 Aug 2009 07:05:56 +0000 (09:05 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Sun, 30 Aug 2009 07:05:56 +0000 (09:05 +0200)
include/isl_map.h
isl_map.c

index 8ea1b9b..3517e4c 100644 (file)
@@ -213,7 +213,7 @@ struct isl_map *isl_map_empty_like_basic_map(struct isl_basic_map *model);
 struct isl_map *isl_map_dup(struct isl_map *map);
 struct isl_map *isl_map_add(struct isl_map *map, struct isl_basic_map *bmap);
 struct isl_map *isl_map_identity(struct isl_dim *set_dim);
-struct isl_map *isl_map_identity_like(struct isl_basic_map *model);
+struct isl_map *isl_map_identity_like_basic_map(struct isl_basic_map *model);
 struct isl_map *isl_map_finalize(struct isl_map *map);
 void isl_map_free(struct isl_map *map);
 struct isl_map *isl_map_copy(struct isl_map *map);
index b2f1b0b..d31775b 100644 (file)
--- a/isl_map.c
+++ b/isl_map.c
@@ -3688,7 +3688,7 @@ struct isl_map *isl_map_identity(struct isl_dim *set_dim)
        return map_identity(dim);
 }
 
-struct isl_map *isl_map_identity_like(struct isl_basic_map *model)
+struct isl_map *isl_map_identity_like_basic_map(struct isl_basic_map *model)
 {
        if (!model || !model->dim)
                return NULL;