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
This commit is contained in:
Roman Gareev 2014-07-20 13:24:37 +00:00 committed by Roman Gareev
parent 30281de2ce
commit 2a46668608
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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:

View File

@ -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;