From 2a4666860823c6c7014814266cce6ac6209da197 Mon Sep 17 00:00:00 2001 From: Roman Gareev Date: Sun, 20 Jul 2014 13:24:37 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 6 ++++++ gcc/graphite-isl-ast-to-gimple.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3909a88f5e1..fb81f4fda61 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-07-20 Roman Gareev + + * graphite-isl-ast-to-gimple.c: + Fixes a formatting issue related to the number of characters in the + line. + 2014-07-20 Roman Gareev * graphite-isl-ast-to-gimple.c: diff --git a/gcc/graphite-isl-ast-to-gimple.c b/gcc/graphite-isl-ast-to-gimple.c index 7fe158a21bf..597f4acce22 100644 --- a/gcc/graphite-isl-ast-to-gimple.c +++ b/gcc/graphite-isl-ast-to-gimple.c @@ -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;