Commit 2a466686 by Roman Gareev Committed by Roman Gareev

graphite-isl-ast-to-gimple.c: Fixes a formatting issue related to the number of…

graphite-isl-ast-to-gimple.c: Fixes a formatting issue related to the number of characters in the line.


	gcc/
	* graphite-isl-ast-to-gimple.c:
	Fixes a formatting issue related to the number of characters in the
	line.

From-SVN: r212868
parent 30281de2
2014-07-20 Roman Gareev <gareevroman@gmail.com>
* graphite-isl-ast-to-gimple.c:
Fixes a formatting issue related to the number of characters in the
line.
2014-07-20 Roman Gareev <gareevroman@gmail.com>
* graphite-isl-ast-to-gimple.c:
Add using of build_nonstandard_integer_type instead of
int128_integer_type_node
......
......@@ -464,7 +464,8 @@ get_upper_bound (__isl_keep isl_ast_node *node_for)
case isl_ast_op_lt:
{
// (iterator < ub) => (iterator <= ub - 1)
isl_val *one = isl_val_int_from_si (isl_ast_expr_get_ctx (for_cond), 1);
isl_val *one =
isl_val_int_from_si (isl_ast_expr_get_ctx (for_cond), 1);
isl_ast_expr *ub = isl_ast_expr_get_op_arg (for_cond, 1);
res = isl_ast_expr_sub (ub, isl_ast_expr_from_val (one));
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment