From 9d3730c1c4c07e10760e850e7a12004e0a4aef89 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sun, 23 Nov 2014 19:28:31 +0100 Subject: [PATCH] summate.c: join_compatible: avoid use of undocumented isl_space_tuple_match Signed-off-by: Sven Verdoolaege --- summate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/summate.c b/summate.c index aad5c51..de91995 100644 --- a/summate.c +++ b/summate.c @@ -977,7 +977,8 @@ static int join_compatible(__isl_keep isl_space *space1, m = isl_space_match(space1, isl_dim_param, space2, isl_dim_param); if (m < 0 || !m) return m; - return isl_space_tuple_match(space1, isl_dim_out, space2, isl_dim_in); + return isl_space_tuple_is_equal(space1, isl_dim_out, + space2, isl_dim_in); } /* Compute the intersection of the range of the map and the domain -- 2.11.4.GIT