From 993c0cf6f4fa46561b8fb55d563879a62aea8ab9 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sun, 23 Nov 2014 19:27:45 +0100 Subject: [PATCH] summate.c: join_compatible: rename "dim" variables to "space" Signed-off-by: Sven Verdoolaege --- summate.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/summate.c b/summate.c index d0608a5..aad5c51 100644 --- a/summate.c +++ b/summate.c @@ -970,13 +970,14 @@ error: return NULL; } -static int join_compatible(__isl_keep isl_space *dim1, __isl_keep isl_space *dim2) +static int join_compatible(__isl_keep isl_space *space1, + __isl_keep isl_space *space2) { int m; - m = isl_space_match(dim1, isl_dim_param, dim2, isl_dim_param); + m = isl_space_match(space1, isl_dim_param, space2, isl_dim_param); if (m < 0 || !m) return m; - return isl_space_tuple_match(dim1, isl_dim_out, dim2, isl_dim_in); + return isl_space_tuple_match(space1, isl_dim_out, space2, isl_dim_in); } /* Compute the intersection of the range of the map and the domain -- 2.11.4.GIT