aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Gareev <gareevroman@gmail.com>2014-07-20 13:24:37 +0000
committerRoman Gareev <romangareev@gcc.gnu.org>2014-07-20 13:24:37 +0000
commit2a4666860823c6c7014814266cce6ac6209da197 (patch)
tree198512a9dcb5ec63b63b2e50bbd85ebfd294ce77
parent30281de2ce283349a61f62df7084d12c6315ef42 (diff)
downloadgcc-2a4666860823c6c7014814266cce6ac6209da197.zip
gcc-2a4666860823c6c7014814266cce6ac6209da197.tar.gz
gcc-2a4666860823c6c7014814266cce6ac6209da197.tar.bz2
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
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/graphite-isl-ast-to-gimple.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3909a88..fb81f4f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,6 +1,12 @@
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
diff --git a/gcc/graphite-isl-ast-to-gimple.c b/gcc/graphite-isl-ast-to-gimple.c
index 7fe158a..597f4ac 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;