From 0bde9db3378be77e945e3ed0d8b6a20b8f3316e2 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 28 Mar 2020 16:09:10 +0100 Subject: [PATCH] isl_mat.c: exchange: add memory management annotations Signed-off-by: Sven Verdoolaege --- isl_mat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/isl_mat.c b/isl_mat.c index 4e6b199e..35eb6a4d 100644 --- a/isl_mat.c +++ b/isl_mat.c @@ -580,8 +580,8 @@ error: return NULL; } -static void exchange(struct isl_mat *M, struct isl_mat **U, - struct isl_mat **Q, unsigned row, unsigned i, unsigned j) +static void exchange(__isl_keep isl_mat *M, __isl_keep isl_mat **U, + __isl_keep isl_mat **Q, unsigned row, unsigned i, unsigned j) { int r; for (r = row; r < M->n_row; ++r) -- 2.11.4.GIT