diff mbox

formatting cleanups

Message ID c7a35354-9d0e-b075-3e40-daf516f20106@acm.org
State New
Headers show

Commit Message

Nathan Sidwell Nov. 22, 2016, 8:13 p.m. UTC
On 11/22/2016 01:48 PM, Jakub Jelinek wrote:

> When you are already changing this, the = should be on the next line.

done
diff mbox

Patch

2016-11-22  Nathan Sidwell  <nathan@acm.org>

	* array-notation-common.c (cilkplus_extract_an_trplets): Fix
	indentation and formatting.

Index: c-family/array-notation-common.c
===================================================================
--- c-family/array-notation-common.c	(revision 242719)
+++ c-family/array-notation-common.c	(working copy)
@@ -629,12 +629,12 @@  cilkplus_extract_an_triplets (vec<tree,
 	  (*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);