]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
graphite-isl-ast-to-gimple.c: Fixes a formatting issue related to the number of chara...
authorRoman Gareev <gareevroman@gmail.com>
Sun, 20 Jul 2014 13:24:37 +0000 (13:24 +0000)
committerRoman Gareev <romangareev@gcc.gnu.org>
Sun, 20 Jul 2014 13:24:37 +0000 (13:24 +0000)
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
gcc/graphite-isl-ast-to-gimple.c

index 3909a88f5e1e2f9bd14061e7a900fdc2eeb6f31c..fb81f4fda619a408e218219de4efd47307682f14 100644 (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:
index 7fe158a21bf07fbadae0c0679dacec99ee22adbd..597f4acce2241c52e7634768b8ae964567f74522 100644 (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;