gcc-ar.c (main): Fix indentation.
authorNathan Sidwell <nathan@acm.org>
Tue, 22 Nov 2016 18:44:08 +0000 (18:44 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Tue, 22 Nov 2016 18:44:08 +0000 (18:44 +0000)
gcc/
* gcc-ar.c (main): Fix indentation.
* gcov-io.c (gcov_write_summary): Remove extraneous {...}
* ggc-page.c (move_ptes_to_front): Fix formatting.
* hsa-dump.c (dump_has_cfun): Fix indentation.
* sel-sched-ir.h: Remove trailing blank lines.

gcc/c-family/
* array-notation-common.c (cilkplus_extrat_an_triplets): Fix
indentation.

From-SVN: r242719

gcc/ChangeLog
gcc/c-family/ChangeLog
gcc/c-family/array-notation-common.c
gcc/gcc-ar.c
gcc/gcov-io.c
gcc/hsa-dump.c
gcc/sel-sched-ir.h

index c4cd4c64ded04ebd9aa64f3bc691e0ed26c34e0f..b2d3ab325d3e5a08c03db959d1376242f9eb16ef 100644 (file)
@@ -1,3 +1,11 @@
+2016-11-22  Nathan Sidwell  <nathan@acm.org>
+
+       * gcc-ar.c (main): Fix indentation.
+       * gcov-io.c (gcov_write_summary): Remove extraneous {...}
+       * ggc-page.c (move_ptes_to_front): Fix formatting.
+       * hsa-dump.c (dump_has_cfun): Fix indentation.
+       * sel-sched-ir.h: Remove trailing blank lines.
+
 2016-11-22  Jakub Jelinek  <jakub@redhat.com>
             Alexander Monakov  <amonakov@ispras.ru>
 
index f2ea179761e9d33bbf7ffb39280353b4f3e4eeac..7383fd4498b39325ad90c602cf3c9a4f4ef31b11 100644 (file)
@@ -1,3 +1,8 @@
+2016-11-22  Nathan Sidwell  <nathan@acm.org>
+
+       * array-notation-common.c (cilkplus_extract_an_trplets): Fix
+       indentation.
+
 2016-11-21  Martin Sebor  <msebor@redhat.com>
 
        * c.opt (-fprintf-return-value): Enable by default.
index 2146d22760fadbcedd3ebd1119fc5b6d444b9c42..8818ed720aa2c5c1893fda32af0c2b6d570d2d78 100644 (file)
@@ -621,21 +621,21 @@ cilkplus_extract_an_triplets (vec<tree, va_gc> *list, size_t size, size_t rank,
            break;
        }
     }
-    for (size_t ii = 0; ii < size; ii++)
-      if (TREE_CODE ((*list)[ii]) == ARRAY_NOTATION_REF)
-       for (size_t jj = 0; jj < rank; jj++)
-         {
-           tree ii_tree = array_exprs[ii][jj];
-           (*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));
-         }
+  for (size_t ii = 0; ii < size; ii++)
+    if (TREE_CODE ((*list)[ii]) == ARRAY_NOTATION_REF)
+      for (size_t jj = 0; jj < rank; jj++)
+       {
+         tree ii_tree = array_exprs[ii][jj];
+         (*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));
+       }
 
   release_vec_vec (array_exprs);
 }
index a02dccb80006b1bf39c8d2e2383c0110576538e8..fc51cacc60ee369e539278d2e30b5f28d22c19dc 100644 (file)
@@ -162,7 +162,7 @@ main (int ac, char **av)
 
          len = strlen (arg);
          if (len > 0)
-                 len--;
+           len--;
          end = arg + len;
 
          /* Always add a dir separator for the prefix list.  */
index 731c2cf07dfe913de6524011cf17f1b82fdb8080..a1b247b68d085301206a841f290bdfccbeb24dff 100644 (file)
@@ -421,13 +421,11 @@ gcov_write_summary (gcov_unsigned_t tag, const struct gcov_summary *summary)
     histo_bitvector[bv_ix] = 0;
   csum = &summary->ctrs[GCOV_COUNTER_ARCS];
   for (h_ix = 0; h_ix < GCOV_HISTOGRAM_SIZE; h_ix++)
-    {
-      if (csum->histogram[h_ix].num_counters > 0)
-        {
-          histo_bitvector[h_ix / 32] |= 1 << (h_ix % 32);
-          h_cnt++;
-        }
-    }
+    if (csum->histogram[h_ix].num_counters)
+      {
+       histo_bitvector[h_ix / 32] |= 1 << (h_ix % 32);
+       h_cnt++;
+      }
   gcov_write_tag_length (tag, GCOV_TAG_SUMMARY_LENGTH (h_cnt));
   gcov_write_unsigned (summary->checksum);
   for (csum = summary->ctrs, ix = GCOV_COUNTERS_SUMMABLE; ix--; csum++)
index 985caca24abc7914ae01ffe3ac9fa06c357b1815..aea9505764546515381289495325fd554a4d385e 100644 (file)
@@ -1130,10 +1130,10 @@ dump_hsa_cfun (FILE *f)
     }
 
   FOR_ALL_BB_FN (bb, cfun)
-  {
-    hsa_bb *hbb = (struct hsa_bb *) bb->aux;
-    dump_hsa_bb (f, hbb);
-  }
+    {
+      hsa_bb *hbb = (struct hsa_bb *) bb->aux;
+      dump_hsa_bb (f, hbb);
+    }
 }
 
 /* Dump textual representation of HSA IL instruction INSN to stderr.  */
index a8bb2d1c1a0d63252d2ce9cf3978d940d4708247..4caf3dfa0337be57136446a8cd3b09b81865796e 100644 (file)
@@ -1669,11 +1669,3 @@ extern void alloc_sched_pools (void);
 extern void free_sched_pools (void);
 
 #endif /* GCC_SEL_SCHED_IR_H */
-
-
-
-
-
-
-
-