diff mbox

[GSoC] A formatting issue.

Message ID CABGF_geShfnTKMcsnV-JtDkm_FwmA9Vw4XTSPq+LDFFus1OW2w@mail.gmail.com
State New
Headers show

Commit Message

Roman Gareev July 20, 2014, 11:39 a.m. UTC
This patch fixes a formatting issue related to the number of
characters in the line. Is it fine for trunk?

--
                                   Cheers, Roman Gareev.
2014-07-20  Roman Gareev  <gareevroman@gmail.com>

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

Comments

Tobias Grosser July 20, 2014, 12:59 p.m. UTC | #1
On July 20, 2014 1:39:08 PM CEST, Roman Gareev <gareevroman@gmail.com> wrote:
>This patch fixes a formatting issue related to the number of
>characters in the line. Is it fine for trunk?

Yes. 

That's an obvious fix. In case you feel a patch is obvious and it only touches graphite. Feel free to commit directly and to then send the patch for information to gcc-patches and to add me in cc. 

Thanks Tobias 


>
>--
>                                   Cheers, Roman Gareev.
diff mbox

Patch

Index: gcc/graphite-isl-ast-to-gimple.c
===================================================================
--- gcc/graphite-isl-ast-to-gimple.c	(revision 212863)
+++ gcc/graphite-isl-ast-to-gimple.c	(working copy)
@@ -464,7 +464,8 @@ 
     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;