]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
alloc-pool.c: Fix comment formatting.
authorKazu Hirata <kazu@cs.umass.edu>
Sun, 29 Jun 2003 13:53:12 +0000 (13:53 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sun, 29 Jun 2003 13:53:12 +0000 (13:53 +0000)
* alloc-pool.c: Fix comment formatting.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* bt-load.c: Likewise.
* builtins.c: Likewise.
* caller-save.c: Likewise.
* cfganal.c: Likewise.
* cfgrtl.c: Likewise.
* collect2.c: Likewise.
* cse.c: Likewise.
* df.c: Likewise.
* diagnostic.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* expmed.c: Likewise.
* final.c: Likewise.
* flags.h: Likewise.
* fold-const.c: Likewise.
* gcc.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* genattrtab.c: Likewise.
* genautomata.c: Likewise.
* libgcov.c: Likewise.
* mips-tfile.c: Likewise.
* optabs.c: Likewise.
* prefix.c: Likewise.
* rtlanal.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* toplev.c: Likewise.
* varasm.c: Likewise.
* vmsdbgout.c: Likewise.

From-SVN: r68672

34 files changed:
gcc/ChangeLog
gcc/alloc-pool.c
gcc/bitmap.c
gcc/bitmap.h
gcc/bt-load.c
gcc/builtins.c
gcc/caller-save.c
gcc/cfganal.c
gcc/cfgrtl.c
gcc/collect2.c
gcc/cse.c
gcc/df.c
gcc/diagnostic.c
gcc/dwarf2out.c
gcc/dwarfout.c
gcc/expmed.c
gcc/final.c
gcc/flags.h
gcc/fold-const.c
gcc/gcc.c
gcc/gcov-io.h
gcc/gcov.c
gcc/genattrtab.c
gcc/genautomata.c
gcc/libgcov.c
gcc/mips-tfile.c
gcc/optabs.c
gcc/prefix.c
gcc/rtlanal.c
gcc/stmt.c
gcc/stor-layout.c
gcc/toplev.c
gcc/varasm.c
gcc/vmsdbgout.c

index b1eea532f46b4b694d9eb58a84d5471a6d3a9786..229be7826e3d20c8c62ce201ea0fdb79a732b9cd 100644 (file)
@@ -1,3 +1,39 @@
+2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * alloc-pool.c: Fix comment formatting.
+       * bitmap.c: Likewise.
+       * bitmap.h: Likewise.
+       * bt-load.c: Likewise.
+       * builtins.c: Likewise.
+       * caller-save.c: Likewise.
+       * cfganal.c: Likewise.
+       * cfgrtl.c: Likewise.
+       * collect2.c: Likewise.
+       * cse.c: Likewise.
+       * df.c: Likewise.
+       * diagnostic.c: Likewise.
+       * dwarf2out.c: Likewise.
+       * dwarfout.c: Likewise.
+       * expmed.c: Likewise.
+       * final.c: Likewise.
+       * flags.h: Likewise.
+       * fold-const.c: Likewise.
+       * gcc.c: Likewise.
+       * gcov-io.h: Likewise.
+       * gcov.c: Likewise.
+       * genattrtab.c: Likewise.
+       * genautomata.c: Likewise.
+       * libgcov.c: Likewise.
+       * mips-tfile.c: Likewise.
+       * optabs.c: Likewise.
+       * prefix.c: Likewise.
+       * rtlanal.c: Likewise.
+       * stmt.c: Likewise.
+       * stor-layout.c: Likewise.
+       * toplev.c: Likewise.
+       * varasm.c: Likewise.
+       * vmsdbgout.c: Likewise.
+
 2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
 
        * expr.c (emit_single_push_insn): If padding is needed
index 1315b12f53dcbe0be76a9fc671df96ebb97021fe..9cb56cd48b6bc10c0365c0d41be128df795bb22f 100644 (file)
@@ -175,12 +175,12 @@ pool_alloc (alloc_pool pool)
       size_t i;
       alloc_pool_list block_header;
 
-      /* Make the block */
+      /* Make the block */
       block = (char *) xmalloc (pool->block_size);
       block_header = (alloc_pool_list) block;
       block += align_eight (sizeof (struct alloc_pool_list_def));
 
-      /* Throw it on the block list */
+      /* Throw it on the block list */
       block_header->next = pool->block_list;
       pool->block_list = block_header;
 
index 98229d598153b80d01090efb5d075aab8fa2e037..619c713a2c872fd045a17fa4a0e6f9624932da4f 100644 (file)
@@ -265,7 +265,7 @@ bitmap_copy (bitmap to, bitmap from)
 
   bitmap_clear (to);
 
-  /* Copy elements in forward direction one at a time */
+  /* Copy elements in forward direction one at a time */
   for (from_ptr = from->first; from_ptr; from_ptr = from_ptr->next)
     {
       bitmap_element *to_elt = bitmap_element_allocate (to);
index 7b85f45c470d6b8c239fff9362cc1f548a450512..401506a2a7e87be267899298f2bdbb4d3927cc3e 100644 (file)
@@ -107,7 +107,7 @@ extern int bitmap_bit_p (bitmap, int);
 extern void debug_bitmap (bitmap);
 extern void debug_bitmap_file (FILE *, bitmap);
 
-/* Print a bitmap */
+/* Print a bitmap */
 extern void bitmap_print (FILE *, bitmap, const char *, const char *);
 
 /* Initialize a bitmap header.  If HEAD is NULL, a new header will be
index ecacc234c816412ce23df1cd9e833e24b50fdd77..180a8baa2a920c2db7d7b9e76ba7fc060f50a8cf 100644 (file)
@@ -89,7 +89,7 @@ typedef struct btr_def_s
   btr_user uses;
   /* If this def has a reaching use which is not a simple use
      in a branch instruction, then has_ambiguous_use will be true,
-     and we will not attempt to migrate this definition.       */
+     and we will not attempt to migrate this definition.  */
   char has_ambiguous_use;
   /* live_range is an approximation to the true live range for this
      def/use web, because it records the set of blocks that contain
@@ -421,7 +421,7 @@ typedef struct {
 /* Called via note_stores or directly to register stores into /
    clobbers of a branch target register DEST that are not recognized as
    straightforward definitions.  DATA points to information about the
-   current basic block that needs updating.   */
+   current basic block that needs updating.  */
 static void
 note_btr_set (rtx dest, rtx set ATTRIBUTE_UNUSED, void *data)
 {
@@ -593,7 +593,7 @@ compute_out (sbitmap *bb_out, sbitmap *bb_gen, sbitmap *bb_kill, int max_uid)
       For each block,
        BB_IN  = union over predecessors of BB_OUT(pred)
        BB_OUT = (BB_IN - BB_KILL) + BB_GEN
-     Iterate until the bb_out sets stop growing.   */
+     Iterate until the bb_out sets stop growing.  */
   int i;
   int changed;
   sbitmap bb_in = sbitmap_alloc (max_uid);
@@ -652,7 +652,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
 
              if (user != NULL)
                {
-                 /* Find all the reaching defs for this use */
+                 /* Find all the reaching defs for this use */
                  sbitmap reaching_defs_of_reg = sbitmap_alloc(max_uid);
                  int uid;
 
@@ -679,7 +679,7 @@ link_btr_uses (btr_def *def_array, btr_user *use_array, sbitmap *bb_out,
                    {
                      btr_def def = def_array[uid];
 
-                     /* We now know that def reaches user */
+                     /* We now know that def reaches user */
 
                      if (rtl_dump_file)
                        fprintf (rtl_dump_file,
@@ -1004,7 +1004,7 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
          btr = choose_btr (combined_btrs_live);
          if (btr != -1)
            {
-             /* We can combine them */
+             /* We can combine them */
              if (rtl_dump_file)
                fprintf (rtl_dump_file,
                         "Combining def in insn %d with def in insn %d\n",
@@ -1037,7 +1037,7 @@ combine_btr_defs (btr_def def, HARD_REG_SET *btrs_live_in_range)
                def->other_btr_uses_after_use = 1;
              COPY_HARD_REG_SET (*btrs_live_in_range, combined_btrs_live);
 
-             /* Delete the old target register initialization */
+             /* Delete the old target register initialization */
              delete_insn (other_def->insn);
 
            }
@@ -1108,7 +1108,7 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range,
     fprintf (rtl_dump_file, "New pt is insn %d, inserted after insn %d\n",
             INSN_UID (def->insn), INSN_UID (insp));
 
-  /* Delete the old target register initialization */
+  /* Delete the old target register initialization */
   delete_insn (old_insn);
 
   /* Replace each use of the old target register by a use of the new target
@@ -1185,7 +1185,7 @@ migrate_btr_def (btr_def def, int min_cost)
             INSN_UID (def->insn), def->cost, min_cost);
 
   if (!def->group || def->has_ambiguous_use)
-    /* These defs are not migratable */
+    /* These defs are not migratable */
     {
       if (rtl_dump_file)
        fprintf (rtl_dump_file, "it's not migratable\n");
index 764a4aa711c596721eda641330da749c086c5283..26938105a551dce4d8cf32c52844eed118fbcfbc 100644 (file)
@@ -1227,7 +1227,7 @@ expand_builtin_apply (rtx function, rtx arguments, rtx argsize)
   do_pending_stack_adjust ();
   NO_DEFER_POP;
 
-  /* Save the stack with nonlocal if available */
+  /* Save the stack with nonlocal if available */
 #ifdef HAVE_save_stack_nonlocal
   if (HAVE_save_stack_nonlocal)
     emit_stack_save (SAVE_NONLOCAL, &old_stack_level, NULL_RTX);
index 689f4f8b22a967955623231e4484d0966ee172bc..d40c8d99be1a324bb2e9f814caf27b7332665c0e 100644 (file)
@@ -670,7 +670,7 @@ insert_restore (struct insn_chain *chain, int before_p, int regno,
            ok = 0;
            break;
          }
-      /* Must do this one restore at a time */
+      /* Must do this one restore at a time */
       if (! ok)
        continue;
 
@@ -742,7 +742,7 @@ insert_save (struct insn_chain *chain, int before_p, int regno,
            ok = 0;
            break;
          }
-      /* Must do this one save at a time */
+      /* Must do this one save at a time */
       if (! ok)
        continue;
 
index 186a6c422d5373f1ac902f3671dd1b3b2a8f40f5..4054996e7eaca7ea0fb7f448531f5d114f933771 100644 (file)
@@ -724,7 +724,7 @@ connect_infinite_loops_to_exit (void)
   return;
 }
 \f
-/* Compute reverse top sort order */
+/* Compute reverse top sort order */
 
 void
 flow_reverse_top_sort_order_compute (int *rts_order)
index af13138f0b428741d6d8beb35bbe0aa5efcfcd97..d37666d9e5770f7d70788b3e09a64b68b0222cac 100644 (file)
@@ -840,7 +840,7 @@ rtl_redirect_edge_and_branch (edge e, basic_block target)
            ++LABEL_NUSES (new_label);
          }
 
-      /* Handle casesi dispatch insns */
+      /* Handle casesi dispatch insns */
       if ((tmp = single_set (insn)) != NULL
          && SET_DEST (tmp) == pc_rtx
          && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
index 85d2843237c4335a74def1f06d7960f35f923948..32eb5be958a04c6e2a465df073cebb3ae773e98a 100644 (file)
@@ -702,7 +702,7 @@ add_prefix (struct path_prefix *pprefix, const char *prefix)
   else
     prev = &pprefix->plist;
 
-  /* Keep track of the longest prefix */
+  /* Keep track of the longest prefix */
 
   len = strlen (prefix);
   if (len > pprefix->max_len)
@@ -1350,7 +1350,7 @@ main (int argc, char **argv)
       )
     {
 #ifdef COLLECT_EXPORT_LIST
-      /* Do tlink without additional code generation */
+      /* Do tlink without additional code generation */
       do_tlink (ld1_argv, object_lst);
 #endif
       /* Strip now if it was requested on the command line.  */
@@ -1816,7 +1816,7 @@ write_c_file_stat (FILE *stream, const char *name ATTRIBUTE_UNUSED)
 
   free (prefix);
 
-  /* Write the tables as C code  */
+  /* Write the tables as C code.  */
 
   fprintf (stream, "static int count;\n");
   fprintf (stream, "typedef void entry_pt();\n");
@@ -1899,7 +1899,7 @@ write_c_file_stat (FILE *stream, const char *name ATTRIBUTE_UNUSED)
 static void
 write_c_file_glob (FILE *stream, const char *name ATTRIBUTE_UNUSED)
 {
-  /* Write the tables as C code  */
+  /* Write the tables as C code.  */
 
   int frames = (frame_tables.number > 0);
 
@@ -2043,7 +2043,7 @@ scan_prog_file (const char *prog_name, enum pass which_pass)
   fflush (stdout);
   fflush (stderr);
 
-  /* Spawn child nm on pipe */
+  /* Spawn child nm on pipe */
   pid = vfork ();
   if (pid == -1)
     fatal_perror (VFORK_STRING);
@@ -2472,7 +2472,7 @@ scan_libraries (const char *prog_name)
   fflush (stdout);
   fflush (stderr);
 
-  /* Spawn child ldd on pipe */
+  /* Spawn child ldd on pipe */
   pid = vfork ();
   if (pid == -1)
     fatal_perror (VFORK_STRING);
@@ -3158,7 +3158,7 @@ scan_prog_file (const char *prog_name, enum pass which_pass)
       if (debug)
        print_header (&hdr);
 
-      /* Write header */
+      /* Write header */
       status = encode_mach_o_hdr (&hdr, obj, MO_SIZEOF_RAW_HDR);
       if (status != MO_HDR_CONV_SUCCESS)
        bad_header (status);
@@ -3166,7 +3166,7 @@ scan_prog_file (const char *prog_name, enum pass which_pass)
       if (debug)
        notice ("writing load commands.\n\n");
 
-      /* Write load commands */
+      /* Write load commands */
       offset = hdr.moh_first_cmd_off;
       for (i = 0; i < hdr.moh_n_load_cmds; i++)
        {
index 23942034e1792897d648020ae3eb0d6d7cb2e33c..f67bbcccfa8d419332f3f62af2ea276dbf436a1d 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -1608,7 +1608,7 @@ insert (x, classp, hash, mode)
     {
       classp = classp->first_same_value;
       if (CHEAPER (elt, classp))
-       /* Insert at the head of the class */
+       /* Insert at the head of the class */
        {
          struct table_elt *p;
          elt->next_same_value = classp;
index 25396bd371acc236a93ad82ab66ca640dd2ac447..e7790d2a68cce1c4165ea93b6f83eb339eb7d9e0 100644 (file)
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -1228,7 +1228,7 @@ df_insn_refs_record (df, bb, insn)
     {
       rtx note;
 
-      /* Record register defs */
+      /* Record register defs */
       df_defs_record (df, PATTERN (insn), bb, insn);
 
       if (df->flags & DF_EQUIV_NOTES)
index 1312ca9924e5300088fab0245e63428afdc2263b..fa52cd825080ae90a180082a48b415e6552abfc2 100644 (file)
@@ -486,7 +486,7 @@ output_format (output_buffer *buffer, text_info *text)
         default:
           break;
         }
-      /* We don't support precision behond that of "long long".   */
+      /* We don't support precision behond that of "long long".  */
       if (precision > 2)
         abort();
 
index 4ae09b14f146af3e9c6c3fc617eb91a4863e3488..7c8f04cbc8ad970b292c12ad3ff9e258fcc69f7e 100644 (file)
@@ -6694,7 +6694,7 @@ new_loc_list (expr, begin, end, section, gensym)
   return retlist;
 }
 
-/* Add a location description expression to a location list */
+/* Add a location description expression to a location list */
 
 static inline void
 add_loc_descr_to_loc_list (list_head, descr, begin, end, section)
@@ -6710,11 +6710,11 @@ add_loc_descr_to_loc_list (list_head, descr, begin, end, section)
   for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
     ;
 
-  /* Add a new location list node to the list */
+  /* Add a new location list node to the list */
   *d = new_loc_list (descr, begin, end, section, 0);
 }
 
-/* Output the location list given to us */
+/* Output the location list given to us */
 
 static void
 output_loc_list (list_head)
@@ -7764,7 +7764,7 @@ output_line_info ()
        {
          function = line_info->function;
 
-         /* Set the address register to the first line in the function */
+         /* Set the address register to the first line in the function */
          dw2_asm_output_data (1, 0, "DW_LNE_set_address");
          dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
          dw2_asm_output_data (1, DW_LNE_set_address, NULL);
@@ -11120,7 +11120,7 @@ gen_subprogram_die (decl, context_die)
     gen_formal_types_die (decl, subr_die);
   else
     {
-      /* Generate DIEs to represent all known formal parameters */
+      /* Generate DIEs to represent all known formal parameters */
       tree arg_decls = DECL_ARGUMENTS (decl);
       tree parm;
 
@@ -11752,7 +11752,7 @@ gen_subroutine_type_die (type, context_die)
   gen_formal_types_die (type, subr_die);
 }
 
-/* Generate a DIE for a type definition */
+/* Generate a DIE for a type definition */
 
 static void
 gen_typedef_die (decl, context_die)
index 6210ab91f858f7c2e528c59b792d4a0a6b34ecc6..ddb6a4ab1648730262f2c149347247e823ad2095 100644 (file)
@@ -5283,7 +5283,7 @@ output_decl (decl, containing_scope)
        output_formal_types (TREE_TYPE (decl));
       else
        {
-         /* Generate DIEs to represent all known formal parameters */
+         /* Generate DIEs to represent all known formal parameters */
 
          tree arg_decls = DECL_ARGUMENTS (decl);
          tree parm;
index ff0f7f61bade1a90a61595b41efd993011db166f..a64b61ae52bcbd9788b7720cf31faec548ff9b33 100644 (file)
@@ -2661,7 +2661,7 @@ choose_multiplier (d, n, precision, multiplier_ptr, post_shift_ptr, lgup_ptr)
   /* If precision == N, then mlow, mhigh exceed 2^N
      (but they do not exceed 2^(N+1)).  */
 
-  /* Reduce to lowest terms */
+  /* Reduce to lowest terms */
   for (post_shift = lgup; post_shift > 0; post_shift--)
     {
       unsigned HOST_WIDE_INT ml_lo = (mlow_hi << (HOST_BITS_PER_WIDE_INT - 1)) | (mlow_lo >> 1);
index b7a04f5d5109544c308c14f7a644ad2347b12157..a86249f0440fb9f782bef59064664c5137ece38b 100644 (file)
@@ -3922,7 +3922,7 @@ debug_queue_symbol (tree decl)
   symbol_queue[symbol_queue_index++] = decl;
 }     
 
-/* Free symbol queue */
+/* Free symbol queue */
 void
 debug_free_queue ()
 {
index 410967ba931ba99e3c8baac3a0011f0259e57d3f..d0ee4a10afbdc8b3036e3d292ef5a72d4aeb329f 100644 (file)
@@ -478,11 +478,11 @@ extern int flag_shlib;
 
 extern int flag_exceptions;
 
-/* Nonzero means generate frame unwind info table when supported */
+/* Nonzero means generate frame unwind info table when supported */
 
 extern int flag_unwind_tables;
 
-/* Nonzero means generate frame unwind info table exact at each insn boundary */
+/* Nonzero means generate frame unwind info table exact at each insn boundary */
 
 extern int flag_asynchronous_unwind_tables;
 
index b35d733e220c6cc6d10d047b8a944dbfc968c1d4..ab6aff494d42a7a6a7b28ee551908725e5e397c0 100644 (file)
@@ -797,7 +797,7 @@ div_and_round_double (code, uns,
        unsigned HOST_WIDE_INT labs_den = lden, ltwice;
        HOST_WIDE_INT habs_den = hden, htwice;
 
-       /* Get absolute values */
+       /* Get absolute values */
        if (*hrem < 0)
          neg_double (*lrem, *hrem, &labs_rem, &habs_rem);
        if (hden < 0)
index df3205151bcb9f239d31226aafebfc01314ab7a5..110495fb031a1d74c9e28a4c93929270ff91dbf9 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -968,7 +968,7 @@ static const struct compiler default_compilers[] =
    , 0},
   
 #include "specs.h"
-  /* Mark end of table */
+  /* Mark end of table */
   {0, 0, 0}
 };
 
@@ -2593,7 +2593,7 @@ add_prefix (pprefix, prefix, component, priority, require_machine_suffix,
        prev = &(*prev)->next)
     ;
 
-  /* Keep track of the longest prefix */
+  /* Keep track of the longest prefix */
 
   prefix = update_path (prefix, component);
   len = strlen (prefix);
@@ -2609,7 +2609,7 @@ add_prefix (pprefix, prefix, component, priority, require_machine_suffix,
   if (warn)
     *warn = 0;
 
-  /* Insert after PREV */
+  /* Insert after PREV */
   pl->next = (*prev);
   (*prev) = pl;
 }
@@ -6636,7 +6636,7 @@ pfatal_pexecute (errmsg_fmt, errmsg_arg)
   pfatal_with_name (errmsg_fmt);
 }
 
-/* Output an error message and exit */
+/* Output an error message and exit */
 
 void
 fancy_abort ()
@@ -6644,7 +6644,7 @@ fancy_abort ()
   fatal ("internal gcc abort");
 }
 \f
-/* Output an error message and exit */
+/* Output an error message and exit */
 
 void
 fatal (const char *msgid, ...)
index 769fd8a276f30cf581da3a9a27c98a92e03d31ca..e7d2f8b4068673d19255514db2f9dc437483c765 100644 (file)
@@ -321,7 +321,7 @@ typedef HOST_WIDEST_INT gcov_type;
 
 /* Structured records.  */
 
-/* Cumulative counter data.   */
+/* Cumulative counter data.  */
 struct gcov_ctr_summary
 {
   gcov_unsigned_t num;         /* number of counters.  */
index 60930da32ebc168c603290035b8309f2acd67bd9..9288ca570f97b8eca34cd4d52745d88744e9f6d6 100644 (file)
@@ -652,7 +652,7 @@ create_file_names (file_name)
   
   if (base)
     {
-      /* Append source file name */
+      /* Append source file name */
       cptr = strrchr (file_name, '/');
       strcat (name, cptr ? cptr + 1 : file_name);
     }
@@ -943,7 +943,7 @@ read_graph_file ()
        fn_n = fn->next;
        fn->next = fn_p;
 
-       /* Reverse the arcs */
+       /* Reverse the arcs */
        for (ix = fn->num_blocks; ix--;)
          {
            arc_t *arc, *arc_p, *arc_n;
@@ -1623,7 +1623,7 @@ accumulate_line_counts (src)
          block_t *block, *block_p, *block_n;
          gcov_type count = 0;
          
-         /* Reverse the block information */
+         /* Reverse the block information */
          for (block = line->u.blocks, block_p = NULL; block;
               block_p = block, block = block_n)
            {
index 86bf972f972978f98d79411cc458702ad59eebd7..8bc9763895b71e73d6f079b8c865feab60806fb9 100644 (file)
@@ -5989,7 +5989,7 @@ from the machine description file `md'.  */\n\n");
       write_automata ();
     }
 
-  /* Write out constant delay slot info */
+  /* Write out constant delay slot info */
   write_const_num_delay_slots ();
 
   write_length_unit_log ();
index 826da68f113b145a5dfc4445a076e494633d01ed..4d9ad3384a1e09c07ddeeeaa14f862d3b43d857a 100644 (file)
@@ -7911,7 +7911,7 @@ output_min_issue_delay_table (automaton_t automaton)
   fprintf (output_file, " ");
   output_min_issue_delay_vect_name (output_file, automaton);
   fprintf (output_file, "[] ATTRIBUTE_UNUSED = {\n");
-  /* Compress the vector */
+  /* Compress the vector */
   if (automaton->max_min_delay < 2)
     automaton->min_issue_delay_table_compression_factor = 8;
   else if (automaton->max_min_delay < 4)
index 5396c395bf2a99cd6048c4d6ffa0f25d40630041..74d830dc1b04eeeda698d80dedbbdce1c7f3778c 100644 (file)
@@ -150,7 +150,7 @@ gcov_exit (void)
          }
     }
 
-  /* Now merge each file  */
+  /* Now merge each file.  */
   for (gi_ptr = gcov_list; gi_ptr; gi_ptr = gi_ptr->next)
     {
       struct gcov_summary this_object;
@@ -233,7 +233,7 @@ gcov_exit (void)
              tag = gcov_read_unsigned ();
              length = gcov_read_unsigned ();
 
-             /* Check function */
+             /* Check function */
              if (tag != GCOV_TAG_FUNCTION
                  || length != GCOV_TAG_FUNCTION_LENGTH
                  || gcov_read_unsigned () != fi_ptr->ident
index 920e15d1a61427e372c124fda3a5e21d437c0ea2..e67770929789615322330784635186acd2df75ad 100644 (file)
@@ -2888,7 +2888,7 @@ parse_def (name_start)
          && memcmp (dir_start, ".endef", sizeof (".endef")-1) == 0)
        break;
 
-      /* Pick up the subdirective now */
+      /* Pick up the subdirective now */
       for (dir_end_p1 = dir_start+1;
           (ch = *dir_end_p1) != ' ' && ch != '\t';
           dir_end_p1++)
@@ -3817,7 +3817,7 @@ parse_input ()
 
   while ((p = read_line ()) != (char *) 0)
     {
-      /* Skip leading blanks */
+      /* Skip leading blanks */
       while (ISSPACE ((unsigned char)*p))
        p++;
 
@@ -5536,7 +5536,7 @@ free_thead (ptr)
 #endif /* MIPS_DEBUGGING_INFO */
 
 \f
-/* Output an error message and exit */
+/* Output an error message and exit */
 
 void
 fatal (const char *format, ...)
index 7f1a5a34fd06d2ac2988899141ae2c73aa912829..cabada2ca46d052f205f82e99075f3cfe57ea68f 100644 (file)
@@ -1552,7 +1552,7 @@ expand_binop (mode, binoptab, op0, op1, target, unsignedp, methods)
       rtx equiv_value;
       int ok = 0;
 
-      /* Find the correct mode for the real and imaginary parts */
+      /* Find the correct mode for the real and imaginary parts */
       enum machine_mode submode = GET_MODE_INNER(mode);
 
       if (submode == BLKmode)
@@ -2600,7 +2600,7 @@ expand_unop (mode, unoptab, op0, target, unsignedp)
       rtx x;
       rtx seq;
 
-      /* Find the correct mode for the real and imaginary parts */
+      /* Find the correct mode for the real and imaginary parts */
       enum machine_mode submode = GET_MODE_INNER (mode);
 
       if (submode == BLKmode)
index e2f8a6714daf676ed7420e42fabd3b33d711cbf4..a7b97401269dcb0aa1570308a580d0c3426f4975 100644 (file)
@@ -350,7 +350,7 @@ update_path (path, key)
   return result;
 }
 
-/* Reset the standard prefix */
+/* Reset the standard prefix */
 void
 set_std_prefix (prefix, len)
   const char *prefix;
index f92bf6a4bf2823a6f538b8db83b9718a29e2e8b0..c0b3a0b569276a9e719bc5be8ff5864edf597796 100644 (file)
@@ -3274,7 +3274,7 @@ insns_safe_to_move_p (from, to, new_to)
   return 0;
 }
 
-/* Return nonzero if IN contains a piece of rtl that has the address LOC */
+/* Return nonzero if IN contains a piece of rtl that has the address LOC */
 int
 loc_mentioned_in_p (loc, in)
      rtx *loc, in;
index b592a33d8673302b18b05401294db579d3bec6dd..2aaa63f329a346c942d5e89b6c63d7129b8b0cec 100644 (file)
@@ -5684,7 +5684,7 @@ expand_end_case_type (orig_index, orig_type)
            if (labelvec[i] == 0)
              labelvec[i] = gen_rtx_LABEL_REF (Pmode, default_label);
 
-         /* Output the table */
+         /* Output the table */
          emit_label (table_label);
 
          if (CASE_VECTOR_PC_RELATIVE || flag_pic)
index c02192f87fc2f77820a06fc4b061ef59c1a78d4a..d01b756e9ce7881f88bf6853bfc85189a1e857fb 100644 (file)
@@ -1278,7 +1278,7 @@ finalize_record_size (rli)
     unpadded_size_unit
       = size_binop (PLUS_EXPR, unpadded_size_unit, size_one_node);
 
-  /* Round the size up to be a multiple of the required alignment */
+  /* Round the size up to be a multiple of the required alignment */
   TYPE_SIZE (rli->t) = round_up (unpadded_size, TYPE_ALIGN (rli->t));
   TYPE_SIZE_UNIT (rli->t) = round_up (unpadded_size_unit,
                                      TYPE_ALIGN (rli->t) / BITS_PER_UNIT);
index 6e393369ebf7fc6c679438a366fb7342ccc7193e..0769d08c6822b62f47470d06aafb23f7c2176396 100644 (file)
@@ -782,7 +782,8 @@ int flag_exceptions;
 
 int flag_unwind_tables = 0;
 
-/* Nonzero means generate frame unwind info table exact at each insn boundary */
+/* Nonzero means generate frame unwind info table exact at each insn
+   boundary.  */
 
 int flag_asynchronous_unwind_tables = 0;
 
@@ -4815,7 +4816,7 @@ backend_init (void)
   init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
                  || debug_info_level == DINFO_LEVEL_VERBOSE
 #ifdef VMS_DEBUGGING_INFO
-                   /* Enable line number info for traceback */
+                   /* Enable line number info for traceback */
                    || debug_info_level > DINFO_LEVEL_NONE
 #endif
                    || flag_test_coverage
index 7519138b3f6f0957b5124cf661370323fbc2f6ac..61661eeae6a898e633ad745726bcd3b990201d79 100644 (file)
@@ -2293,7 +2293,7 @@ const_hash_1 (exp)
       return code;
     }
 
-  /* Compute hashing function */
+  /* Compute hashing function */
   hi = len;
   for (i = 0; i < len; i++)
     hi = ((hi * 613) + (unsigned) (p[i]));
@@ -2992,7 +2992,7 @@ const_hash_rtx (mode, x)
 
   decode_rtx_const (mode, x, &u.value);
 
-  /* Compute hashing function */
+  /* Compute hashing function */
   hi = 0;
   for (i = 0; i < ARRAY_SIZE (u.data); i++)
     hi = hi * 613 + u.data[i];
index e2d523ce0428d7c6c9f35915c69f13d1cb1e64bb..83b7d17fe2161fef82811f9102daa0053875b5b3 100644 (file)
@@ -837,7 +837,7 @@ write_rtnbeg (rtnnum, dosizeonly)
       totsize += write_debug_string ((char *) go, "main name", dosizeonly);
     }
 
-  /* The header length never includes the length byte */
+  /* The header length never includes the length byte */
   rtnbeg.dst_a_rtnbeg_header.dst__header_length.dst_w_length
    = DST_K_RTNBEG_SIZE + rtnnamelen - 1;
   rtnbeg.dst_a_rtnbeg_header.dst__header_type.dst_w_type = DST_K_RTNBEG;
@@ -959,7 +959,7 @@ write_pclines (dosizeonly)
       linestart = linestart + ((max_line / 10000) + 1) * 10000;
     }
 
-  /* Set starting address to beginning of text section */
+  /* Set starting address to beginning of text section */
   line_num.dst_a_line_num_header.dst__header_length.dst_w_length = 8;
   line_num.dst_a_line_num_header.dst__header_type.dst_w_type = DST_K_LINE_NUM;
   pcline.dst_b_pcline_command = DST_K_SET_ABS_PC;
@@ -1311,7 +1311,7 @@ vmsdbgout_end_prologue (line, file)
                                   current_function_funcdef_no);
       ASM_OUTPUT_LABEL (asm_out_file, label);
 
-      /* VMS PCA expects every PC range to correlate to some line and file */
+      /* VMS PCA expects every PC range to correlate to some line and file */
       vmsdbgout_source_line (line, file);
     }
 }
@@ -1348,7 +1348,7 @@ vmsdbgout_end_epilogue (line, file)
                                   current_function_funcdef_no);
       ASM_OUTPUT_LABEL (asm_out_file, label);
 
-      /* VMS PCA expects every PC range to correlate to some line and file */
+      /* VMS PCA expects every PC range to correlate to some line and file */
       vmsdbgout_source_line (line, file);
     }
 }
@@ -1477,17 +1477,17 @@ lookup_filename (file_name)
 #ifdef VMS
       struct tm *ts;
 
-      /* Adjust for GMT */
+      /* Adjust for GMT */
       ts = (struct tm *) localtime (&statbuf.st_ctime);
       gmtoff = ts->tm_gmtoff;
 
-      /* VMS has multiple file format types */
+      /* VMS has multiple file format types */
       rfo = statbuf.st_fab_rfm;
 #else
       /* Is GMT adjustment an issue with a cross-compiler? */
       gmtoff = 0;
 
-      /* Assume stream LF type file */
+      /* Assume stream LF type file */
       rfo = 2;
 #endif
       cdt = 10000000 * (statbuf.st_ctime + gmtoff + vms_epoch_offset);