diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-26 22:02:11 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-26 22:02:11 +0000 |
commit | 557c19428ab5a8c3108bc305e1c6f0c6807d61e8 (patch) | |
tree | 638f5ac175067ff03b306bcc14f058b3bdc7451b /gcc/graphite-isl-ast-to-gimple.c | |
parent | 80adbd968d26b269eea7fdb31344187cc637ac10 (diff) | |
download | gcc-557c19428ab5a8c3108bc305e1c6f0c6807d61e8.tar.gz |
handle isl_ast_op_select
2016-01-26 Abderrazek Zaafrani <a.zaafrani@samsung.com>
Sebastian Pop <s.pop@samsung.com>
* graphite-isl-ast-to-gimple.c (ternary_op_to_tree): Handle
isl_ast_op_cond and isl_ast_op_select.
(gcc_expression_from_isl_expr_op): Same.
* gcc.dg/graphite/isl-ast-op-select.c: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232851 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-isl-ast-to-gimple.c')
-rw-r--r-- | gcc/graphite-isl-ast-to-gimple.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/gcc/graphite-isl-ast-to-gimple.c b/gcc/graphite-isl-ast-to-gimple.c index 0f585032b1c..81ed3046e1d 100644 --- a/gcc/graphite-isl-ast-to-gimple.c +++ b/gcc/graphite-isl-ast-to-gimple.c @@ -689,22 +689,20 @@ tree translate_isl_ast_to_gimple:: ternary_op_to_tree (tree type, __isl_take isl_ast_expr *expr, ivs_params &ip) { - gcc_assert (isl_ast_expr_get_op_type (expr) == isl_ast_op_minus); + enum isl_ast_op_type t = isl_ast_expr_get_op_type (expr); + gcc_assert (t == isl_ast_op_cond || t == isl_ast_op_select); isl_ast_expr *arg_expr = isl_ast_expr_get_op_arg (expr, 0); - tree tree_first_expr - = gcc_expression_from_isl_expression (type, arg_expr, ip); + tree a = gcc_expression_from_isl_expression (type, arg_expr, ip); arg_expr = isl_ast_expr_get_op_arg (expr, 1); - tree tree_second_expr - = gcc_expression_from_isl_expression (type, arg_expr, ip); + tree b = gcc_expression_from_isl_expression (type, arg_expr, ip); arg_expr = isl_ast_expr_get_op_arg (expr, 2); - tree tree_third_expr - = gcc_expression_from_isl_expression (type, arg_expr, ip); + tree c = gcc_expression_from_isl_expression (type, arg_expr, ip); isl_ast_expr_free (expr); if (codegen_error) return NULL_TREE; - return fold_build3 (COND_EXPR, type, tree_first_expr, - tree_second_expr, tree_third_expr); + + return fold_build3 (COND_EXPR, type, a, b, c); } /* Converts a unary isl_ast_expr_op expression E to a GCC expression tree of @@ -791,7 +789,6 @@ gcc_expression_from_isl_expr_op (tree type, __isl_take isl_ast_expr *expr, case isl_ast_op_call: case isl_ast_op_and_then: case isl_ast_op_or_else: - case isl_ast_op_select: gcc_unreachable (); case isl_ast_op_max: @@ -822,6 +819,7 @@ gcc_expression_from_isl_expr_op (tree type, __isl_take isl_ast_expr *expr, return unary_op_to_tree (type, expr, ip); case isl_ast_op_cond: + case isl_ast_op_select: return ternary_op_to_tree (type, expr, ip); default: |