From 8c880df2f69f717aa62b7fa3815a7724b45d5538 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Thu, 4 Jun 2015 16:41:42 +0200 Subject: [PATCH] isl_ast_expr_is_equal: avoid icc warning Signed-off-by: Sven Verdoolaege --- isl_ast.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/isl_ast.c b/isl_ast.c index a2879ba7..0ac01f92 100644 --- a/isl_ast.c +++ b/isl_ast.c @@ -358,6 +358,9 @@ isl_bool isl_ast_expr_is_equal(__isl_keep isl_ast_expr *expr1, case isl_ast_expr_error: return isl_bool_error; } + + isl_die(isl_ast_expr_get_ctx(expr1), isl_error_internal, + "unhandled case", return isl_bool_error); } /* Create a new operation expression of operation type "op", -- 2.11.4.GIT