From d9a91c283f30d3db272f6997bff9714100285b5a Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 20 Feb 2015 11:14:33 +0100 Subject: [PATCH] isl_ast_build_expr.c: isl_ast_expr_mod: drop unused variable Detected by a scan_build on Polly. Signed-off-by: Sven Verdoolaege --- isl_ast_build_expr.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/isl_ast_build_expr.c b/isl_ast_build_expr.c index 2042ac8f..453a03cc 100644 --- a/isl_ast_build_expr.c +++ b/isl_ast_build_expr.c @@ -332,14 +332,12 @@ static __isl_give isl_ast_expr *isl_ast_expr_mod(__isl_keep isl_val *v, __isl_keep isl_aff *aff, __isl_keep isl_val *d, __isl_keep isl_ast_build *build) { - isl_ctx *ctx; isl_ast_expr *expr; isl_ast_expr *c; if (!aff) return NULL; - ctx = isl_aff_get_ctx(aff); expr = isl_ast_expr_from_aff(isl_aff_copy(aff), build); c = isl_ast_expr_from_val(isl_val_copy(d)); -- 2.11.4.GIT