diff options
author | Nathan Sidwell <nathan@acm.org> | 2016-11-22 20:12:46 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2016-11-22 20:12:46 +0000 |
commit | cacd29beae068e32b7512d2aca4e6776bc06d0af (patch) | |
tree | 345e9374fe408c5ea5c423e01cd192f10944e1fe /gcc/c-family/array-notation-common.c | |
parent | 730c9e75a32c13496bf1c053c3a25e698e6fdb19 (diff) | |
download | gcc-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/array-notation-common.c')
-rw-r--r-- | gcc/c-family/array-notation-common.c | 12 |
1 files changed, 6 insertions, 6 deletions
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); |