2015-12-03 Tom de Vries <tom@codesourcery.com>
* graphite-isl-ast-to-gimple.c (binary_op_to_tree)
(gcc_expression_from_isl_expr_op): Guard isl_ast_op_zdiv_r usage with
HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231223
138bc75d-0d04-0410-961f-
82ee72b054a4
+2015-12-03 Tom de Vries <tom@codesourcery.com>
+
+ * graphite-isl-ast-to-gimple.c (binary_op_to_tree)
+ (gcc_expression_from_isl_expr_op): Guard isl_ast_op_zdiv_r usage with
+ HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS.
+
2015-12-03 Richard Biener <rguenther@suse.de>
PR tree-optimization/67800
}
return fold_build2 (TRUNC_DIV_EXPR, type, tree_lhs_expr, tree_rhs_expr);
+#if HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS
case isl_ast_op_zdiv_r:
+#endif
case isl_ast_op_pdiv_r:
/* As ISL operates on arbitrary precision numbers, we may end up with
division by 2^64 that is folded to 0. */
case isl_ast_op_pdiv_q:
case isl_ast_op_pdiv_r:
case isl_ast_op_fdiv_q:
+#if HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS
case isl_ast_op_zdiv_r:
+#endif
case isl_ast_op_and:
case isl_ast_op_or:
case isl_ast_op_eq: