aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-family
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2016-11-22 20:12:46 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2016-11-22 20:12:46 +0000
commitcacd29beae068e32b7512d2aca4e6776bc06d0af (patch)
tree345e9374fe408c5ea5c423e01cd192f10944e1fe /gcc/c-family
parent730c9e75a32c13496bf1c053c3a25e698e6fdb19 (diff)
downloadgcc-cacd29beae068e32b7512d2aca4e6776bc06d0af.zip
gcc-cacd29beae068e32b7512d2aca4e6776bc06d0af.tar.gz
gcc-cacd29beae068e32b7512d2aca4e6776bc06d0af.tar.bz2
array-notation-common.c (cilkplus_extract_an_trplets): Fix indentation and formatting.
* array-notation-common.c (cilkplus_extract_an_trplets): Fix indentation and formatting. From-SVN: r242721
Diffstat (limited to 'gcc/c-family')
-rw-r--r--gcc/c-family/ChangeLog2
-rw-r--r--gcc/c-family/array-notation-common.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 7383fd4..d0d4417 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,7 +1,7 @@
2016-11-22 Nathan Sidwell <nathan@acm.org>
* array-notation-common.c (cilkplus_extract_an_trplets): Fix
- indentation.
+ indentation and formatting.
2016-11-21 Martin Sebor <msebor@redhat.com>
diff --git a/gcc/c-family/array-notation-common.c b/gcc/c-family/array-notation-common.c
index 8818ed7..3ae3d17 100644
--- a/gcc/c-family/array-notation-common.c
+++ b/gcc/c-family/array-notation-common.c
@@ -629,12 +629,12 @@ cilkplus_extract_an_triplets (vec<tree, va_gc> *list, size_t size, size_t rank,
(*node)[ii][jj].is_vector = true;
(*node)[ii][jj].value = ARRAY_NOTATION_ARRAY (ii_tree);
(*node)[ii][jj].start = ARRAY_NOTATION_START (ii_tree);
- (*node)[ii][jj].length =
- fold_build1 (CONVERT_EXPR, integer_type_node,
- ARRAY_NOTATION_LENGTH (ii_tree));
- (*node)[ii][jj].stride =
- fold_build1 (CONVERT_EXPR, integer_type_node,
- ARRAY_NOTATION_STRIDE (ii_tree));
+ (*node)[ii][jj].length
+ = fold_build1 (CONVERT_EXPR, integer_type_node,
+ ARRAY_NOTATION_LENGTH (ii_tree));
+ (*node)[ii][jj].stride
+ = fold_build1 (CONVERT_EXPR, integer_type_node,
+ ARRAY_NOTATION_STRIDE (ii_tree));
}
release_vec_vec (array_exprs);