]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
dbxout.c: Fix comment formatting.
authorKazu Hirata <kazu@hxi.com>
Wed, 8 Aug 2001 22:06:48 +0000 (22:06 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 8 Aug 2001 22:06:48 +0000 (22:06 +0000)
* dbxout.c: Fix comment formatting.
* dependence.c: Likewise.
* df.c: Likewise.
* diagnostic.c: Likewise.
* dominance.c: Likewise.
* doprint.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* emit-rtl.c: Likewise.
* except.c: Likewise.
* explow.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.

From-SVN: r44729

17 files changed:
gcc/ChangeLog
gcc/dbxout.c
gcc/dependence.c
gcc/df.c
gcc/diagnostic.c
gcc/dominance.c
gcc/doprint.c
gcc/dwarf2out.c
gcc/dwarfout.c
gcc/emit-rtl.c
gcc/except.c
gcc/explow.c
gcc/expmed.c
gcc/expr.c
gcc/flow.c
gcc/fold-const.c
gcc/function.c

index 500a0894d9fcc6ed67aceaf0dd24364129470996..7ca9c06088166d17ca983cd77b8e0efdd9b189a4 100644 (file)
@@ -1,3 +1,22 @@
+2001-08-08  Kazu Hirata  <kazu@hxi.com>
+
+       * dbxout.c: Fix comment formatting.
+       * dependence.c: Likewise.
+       * df.c: Likewise.
+       * diagnostic.c: Likewise.
+       * dominance.c: Likewise.
+       * doprint.c: Likewise.
+       * dwarf2out.c: Likewise.
+       * dwarfout.c: Likewise.
+       * emit-rtl.c: Likewise.
+       * except.c: Likewise.
+       * explow.c: Likewise.
+       * expmed.c: Likewise.
+       * expr.c: Likewise.
+       * flow.c: Likewise.
+       * fold-const.c: Likewise.
+       * function.c: Likewise.
+
 2001-08-08  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
 
        * global.c (retry_global_alloc): Avoid shadowing allocno.
index 60a91fe185f5d1703b69bd3029fdab5edc946c92..18ea19694d789e420c35a2853b183e70c2bce5a5 100644 (file)
@@ -2737,7 +2737,7 @@ dbxout_block (block, depth, args)
          did_output = 1;
 #else
          /* In dbx format, the syms of a block come before the N_LBRAC.
-            If nothing is output, we don't need the N_LBRAC, either. */
+            If nothing is output, we don't need the N_LBRAC, either.  */
          did_output = 0;
          if (debug_info_level != DINFO_LEVEL_TERSE || depth == 0)
            did_output = dbxout_syms (BLOCK_VARS (block));
index 103380bc491a5ce52530c371c860335a0737ea63..9a54ac6251f09ff26c72de3051f010675e9b3b19 100644 (file)
@@ -79,7 +79,7 @@ enum complexity_type {ziv, strong_siv, weak_siv, weak_zero_siv,
 
 /* Given a def/use one can chase the next chain to follow the def/use
    for that variable.  Alternately one can sequentially follow each
-   element of def_use_chain. */
+   element of def_use_chain.  */
 
 typedef struct def_use
 {
@@ -104,7 +104,7 @@ typedef struct def_use
 /* Given a loop* one can chase the next_nest chain to follow the nested
    loops for that loop.  Alternately one can sequentially follow each
    element of loop_chain and check outer_loop to get all loops
-   contained within a certain loop. */
+   contained within a certain loop.  */
 
 typedef struct loop
 {
@@ -118,11 +118,11 @@ typedef struct loop
   enum loop_status_type status;
   /* loop* for loop contained in this loop */
   struct loop *next_nest;
-  /* induction variables for this loop.  Currently only the index variable. */
+  /* induction variables for this loop.  Currently only the index variable.  */
   struct induction *ind;
 } loop;
 
-/* Pointed to by loop. One per induction variable. */
+/* Pointed to by loop. One per induction variable.  */
 
 typedef struct induction
 {
@@ -134,11 +134,11 @@ typedef struct induction
   int  low_bound;
   /* upper bound */
   int  high_bound;
-  /* next induction variable for this loop.  Currently null. */
+  /* next induction variable for this loop.  Currently null.  */
   struct induction *next;
 } induction;
 
-/* Pointed to by def/use.  One per dependence. */
+/* Pointed to by def/use.  One per dependence.  */
 
 typedef struct dependence
 {
@@ -163,11 +163,11 @@ typedef struct subscript
   int offset;
   /* our name */
   const char *variable;
-  /* next subscript term.  Currently null. */
+  /* next subscript term.  Currently null.  */
   struct subscript *next;
 } subscript;
 
-/* Remember the destination the front end encountered. */
+/* Remember the destination the front end encountered.  */
 
 static tree dest_to_remember;
 
@@ -221,7 +221,7 @@ int have_dependence_p PARAMS ((rtx, rtx, enum direction_type[], int[]));
 void end_dependence_analysis PARAMS ((void));
 
 /* Build dependence chain 'dep_chain', which is used by have_dependence_p,
-   for the function given by EXP. */
+   for the function given by EXP.  */
 
 void
 init_dependence_analysis (exp)
@@ -433,7 +433,7 @@ add_loop (loop_node, outer_loop, nloop)
 }
 
 /* Update LOOP_DEF if for loop's COND_NODE and INCR_NODE define an index that
-   is a normalized induction variable. */
+   is a normalized induction variable.  */
 
 static int
 find_induction_variable (init_node, cond_node, incr_node, loop_def)
@@ -579,7 +579,7 @@ get_low_bound (node, variable)
 
 
 /* Return the ordinal subscript position for IND_VAR if it is an induction
-   variable contained in OUTER_LOOP, otherwise return -1. */
+   variable contained in OUTER_LOOP, otherwise return -1.  */
 
 static int
 have_induction_variable (outer_loop, ind_var)
@@ -605,7 +605,7 @@ have_induction_variable (outer_loop, ind_var)
   return -1;
 }
 
-/* Chain the nodes of 'loop_chain'. */
+/* Chain the nodes of 'loop_chain'.  */
 
 static void
 link_loops ()
@@ -627,7 +627,7 @@ link_loops ()
     }
 }
 
-/* Check the dependence for each member of 'def_use_chain'. */
+/* Check the dependence for each member of 'def_use_chain'.  */
 
 static void
 get_node_dependence ()
@@ -645,7 +645,7 @@ get_node_dependence ()
     }
 }
 
-/* Check the dependence for definition DU. */
+/* Check the dependence for definition DU.  */
 
 static void
 check_node_dependence (du)
@@ -807,7 +807,7 @@ check_node_dependence (du)
     }
 }
 
-/* Get the COEFFICIENTS and offset for def/use DU. */
+/* Get the COEFFICIENTS and offset for def/use DU.  */
 
 static int
 get_coefficients (du, coefficients)
@@ -851,7 +851,7 @@ get_coefficients (du, coefficients)
   return array_count;
 }
 
-/* Get the COEFFICIENTS and offset for NODE having TYPE and defined in DU. */
+/* Get the COEFFICIENTS and offset for NODE having TYPE and defined in DU.  */
 
 static int
 get_one_coefficient (node, coefficients, du, type)
@@ -940,7 +940,7 @@ get_one_coefficient (node, coefficients, du, type)
   return 0;
 }
 
-/* Adjust the COEFFICIENTS as if loop LOOP_PTR were normalized to start at 0. */
+/* Adjust the COEFFICIENTS as if loop LOOP_PTR were normalized to start at 0.  */
 
 static void
 normalize_coefficients (coefficients, loop_ptr, count)
@@ -1091,7 +1091,7 @@ siv_test (icoefficients, ocoefficients, direction, distance, loop_ptr, sub)
   coef_diff = icoefficients[sub].offset - ocoefficients[sub].offset;
   /* strong_siv requires equal coefficients.  weak_crossing_siv requires
      coefficients to have equal absolute value.  weak_zero_siv uses the
-     nonzero coefficient. */
+     nonzero coefficient.  */
 
   if (ocoefficients[sub].coefficient == INT_MIN)
     coef = icoefficients[sub].coefficient;
@@ -1180,7 +1180,7 @@ gcd_test (icoefficients, ocoefficients, direction, distance, loop_ptr, sub)
        }
     }
   /* ?? gcd does not yield direction and distance.  Wolfe's direction
-     vector hierarchy can be used to give this. */
+     vector hierarchy can be used to give this.  */
 }     
 
 /* Find the gcd of X and Y using Euclid's algorithm */
@@ -1263,7 +1263,7 @@ merge_dependencies (direction, distance, loop_count, subscript_count)
     }
 }
 
-/* Dump ARRAY_REF NODE. */
+/* Dump ARRAY_REF NODE.  */
 
 static void
 dump_array_ref (node)
@@ -1299,7 +1299,7 @@ dump_array_ref (node)
     }
 }
 
-/* Dump def/use DU. */
+/* Dump def/use DU.  */
 
 #if 0
 static void
@@ -1346,7 +1346,7 @@ dump_one_node (du, seen)
     }
 }
 
-/* Dump dependence info. */
+/* Dump dependence info.  */
 
 static void
 dump_node_dependence (void)
@@ -1373,7 +1373,7 @@ dump_node_dependence (void)
 
 /* Return the index into 'dep_chain' if there is a dependency for destination
    dest_to_remember (set by remember_dest_for_dependence) and source node.
-   Called by the front end, which adds the index onto a MEM rtx. */
+   Called by the front end, which adds the index onto a MEM rtx.  */
 
 int
 search_dependence (node)
@@ -1402,7 +1402,7 @@ search_dependence (node)
   return 0;
 }
 
-/* Remember a destination NODE for search_dependence. */
+/* Remember a destination NODE for search_dependence.  */
 
 void
 remember_dest_for_dependence (node)
@@ -1422,7 +1422,7 @@ remember_dest_for_dependence (node)
 #endif
 
 /* Return 1 along with the dependence DIRECTION and DISTANCE if there is a 
-   dependence from dest_rtx to src_rtx. */
+   dependence from dest_rtx to src_rtx.  */
 
 int
 have_dependence_p (dest_rtx, src_rtx, direction, distance)
@@ -1461,7 +1461,7 @@ have_dependence_p (dest_rtx, src_rtx, direction, distance)
   return 0;
 }
 
-/* Cleanup when dependency analysis is complete. */
+/* Cleanup when dependency analysis is complete.  */
 
 void
 end_dependence_analysis ()
index 776f4feebc89e4b00a5f88c33987ea9babc895d0..505ed7b2ec54a8b83799b8ef6118efcc62e6361d 100644 (file)
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -1176,7 +1176,7 @@ df_uses_record (df, loc, ref_type, bb, insn)
       /* Catch the def of the register being modified.  */
       df_ref_record (df, XEXP (x, 0), &XEXP (x, 0), bb, insn, DF_REF_REG_DEF);
 
-      /* ... Fall through to handle uses ... */
+      /* ... Fall through to handle uses ...  */
 
     default:
       break;
@@ -1600,7 +1600,7 @@ df_ud_chain_create (df, blocks)
 \f
 
 /* Use depth first order, and the worklist, to figure out what block
-   to look at next. */
+   to look at next.  */
 
 static int
 df_visit_next (df, blocks)
index 14cd98647ff20ca24c759b2e4fc8549bb350619e..0efcfd6b58b718fe879c93d863cb4a03f98c316b 100644 (file)
@@ -58,7 +58,7 @@ Boston, MA 02111-1307, USA.  */
 #define diagnostic_args output_buffer_ptr_to_format_args (diagnostic_buffer)
 #define diagnostic_msg output_buffer_text_cursor (diagnostic_buffer)
 
-/* Prototypes. */
+/* Prototypes.  */
 static void diagnostic_finish PARAMS ((output_buffer *));
 static void output_do_verbatim PARAMS ((output_buffer *,
                                         const char *, va_list *));
@@ -1125,7 +1125,7 @@ pedwarn_with_decl VPARAMS ((tree decl, const char *msgid, ...))
   va_end (ap);
 }
 
-/* Same as above but within the context FILE and LINE. */
+/* Same as above but within the context FILE and LINE.  */
 
 void
 pedwarn_with_file_and_line VPARAMS ((const char *file, int line,
index 8f5e0d370a070db01354c93cd7df8e6453751a47..3c35268dc5cbf0a860837c9b017c8443072cec44 100644 (file)
@@ -95,7 +95,7 @@ struct dom_info
      is true for every basic block bb, but not the opposite.  */
   basic_block *dfs_to_bb;
 
-  /* This is the next free DFS number when creating the DFS tree or forest. */
+  /* This is the next free DFS number when creating the DFS tree or forest.  */
   unsigned int dfsnum;
   /* The number of nodes in the DFS tree (==dfsnum-1).  */
   unsigned int nodes;
@@ -193,7 +193,7 @@ calc_dfs_tree_nonrec (di, bb, reverse)
      basic_block bb;
      enum cdi_direction reverse;
 {
-  /* We never call this with bb==EXIT_BLOCK_PTR (ENTRY_BLOCK_PTR if REVERSE). */
+  /* We never call this with bb==EXIT_BLOCK_PTR (ENTRY_BLOCK_PTR if REVERSE).  */
   /* We call this _only_ if bb is not already visited.  */
   edge e;
   TBB child_i, my_i = 0;
index 5564421df0b2676fc0e021a29df92f7d35d5819c..114dcb7f77e22114f5ecf58be69c7e6044f3c966 100644 (file)
@@ -20,7 +20,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #include "system.h"
 #undef _doprnt
 
-#ifdef TEST /* Make sure to use the internal one. */
+#ifdef TEST /* Make sure to use the internal one.  */
 #define _doprnt my_doprnt
 #endif
 
@@ -28,8 +28,8 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
   do { \
         const int value = abs (va_arg (ap, int)); \
         char buf[32]; \
-        ptr++; /* Go past the asterisk. */ \
-        *sptr = '\0'; /* NULL terminate sptr. */ \
+        ptr++; /* Go past the asterisk.  */ \
+        *sptr = '\0'; /* NULL terminate sptr.  */ \
         sprintf(buf, "%d", value); \
         strcat(sptr, buf); \
         while (*sptr) sptr++; \
@@ -47,8 +47,8 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
   do { \
        int result; \
        TYPE value = va_arg (ap, TYPE); \
-       *sptr++ = *ptr++; /* Copy the type specifier. */ \
-       *sptr = '\0'; /* NULL terminate sptr. */ \
+       *sptr++ = *ptr++; /* Copy the type specifier.  */ \
+       *sptr = '\0'; /* NULL terminate sptr.  */ \
        result = fprintf(stream, specifier, value); \
        if (result == -1) \
          return -1; \
@@ -71,31 +71,31 @@ _doprnt (format, ap, stream)
   
   while (*ptr != '\0')
     {
-      if (*ptr != '%') /* While we have regular characters, print them. */
+      if (*ptr != '%') /* While we have regular characters, print them.  */
        PRINT_CHAR(*ptr);
       else /* We got a format specifier! */
        {
          char * sptr = specifier;
          int wide_width = 0, short_width = 0;
          
-         *sptr++ = *ptr++; /* Copy the % and move forward. */
+         *sptr++ = *ptr++; /* Copy the % and move forward.  */
 
-         while (strchr ("-+ #0", *ptr)) /* Move past flags. */
+         while (strchr ("-+ #0", *ptr)) /* Move past flags.  */
            *sptr++ = *ptr++;
 
          if (*ptr == '*')
            COPY_VA_INT;
          else
-           while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */
+           while (ISDIGIT(*ptr)) /* Handle explicit numeric value.  */
              *sptr++ = *ptr++;
          
          if (*ptr == '.')
            {
-             *sptr++ = *ptr++; /* Copy and go past the period. */
+             *sptr++ = *ptr++; /* Copy and go past the period.  */
              if (*ptr == '*')
                COPY_VA_INT;
              else
-               while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */
+               while (ISDIGIT(*ptr)) /* Handle explicit numeric value.  */
                  *sptr++ = *ptr++;
            }
          while (strchr ("hlL", *ptr))
@@ -129,7 +129,7 @@ _doprnt (format, ap, stream)
              {
                /* Short values are promoted to int, so just copy it
                    as an int and trust the C library printf to cast it
-                   to the right width. */
+                   to the right width.  */
                if (short_width)
                  PRINT_TYPE(int);
                else
@@ -147,7 +147,7 @@ _doprnt (format, ap, stream)
 #if defined(__GNUC__) || defined(HAVE_LONG_LONG)
                        PRINT_TYPE(long long);
 #else
-                       PRINT_TYPE(long); /* Fake it and hope for the best. */
+                       PRINT_TYPE(long); /* Fake it and hope for the best.  */
 #endif
                        break;
                      } /* End of switch (wide_width) */
@@ -167,7 +167,7 @@ _doprnt (format, ap, stream)
 #if defined(__GNUC__) || defined(HAVE_LONG_DOUBLE)
                    PRINT_TYPE(long double);
 #else
-                   PRINT_TYPE(double); /* Fake it and hope for the best. */
+                   PRINT_TYPE(double); /* Fake it and hope for the best.  */
 #endif
                  }
              }
index bedbf8ec95753a3f050db8259d8af43ef4a9f25b..f940dda4ca8197ad99aef2137280e22d354dfa9f 100644 (file)
@@ -877,7 +877,7 @@ initial_return_save (rtl)
 }
 
 /* Given a SET, calculate the amount of stack adjustment it
-   contains. */
+   contains.  */
 
 static long
 stack_adjust_offset (pattern)
@@ -981,7 +981,7 @@ dwarf2out_stack_adjust (insn)
           || GET_CODE (PATTERN (insn)) == SEQUENCE)
     {
       /* There may be stack adjustments inside compound insns.  Search
-         for them. */
+         for them.  */
       int j;
 
       offset = 0;
@@ -2201,7 +2201,7 @@ dw_loc_descr_node;
 
 /* Location lists are ranges + location descriptions for that range,
    so you can track variables that are in different places over
-   their entire life. */
+   their entire life.  */
 typedef struct dw_loc_list_struct
 {
   dw_loc_list_ref dw_loc_next;
@@ -6030,7 +6030,7 @@ output_die_symbol (die)
 /* Return a new location list, given the begin and end range, and the
    expression. gensym tells us whether to generate a new internal
    symbol for this location list node, which is done for the head of
-   the list only. */ 
+   the list only.  */ 
 static inline dw_loc_list_ref
 new_loc_list (expr, begin, end, section, gensym)
      register dw_loc_descr_ref expr;
@@ -6061,7 +6061,7 @@ add_loc_descr_to_loc_list (list_head, descr, begin, end, section)
 {
   register dw_loc_list_ref *d;
   
-  /* Find the end of the chain. */
+  /* Find the end of the chain.  */
   for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
     ;
   /* Add a new location list node to the list */
@@ -11543,7 +11543,7 @@ dwarf2out_source_line (line, filename)
     }
 }
 
-/* Record the beginning of a new source file. */
+/* Record the beginning of a new source file.  */
 
 static void
 dwarf2out_start_source_file (lineno, filename)
@@ -11833,7 +11833,7 @@ dwarf2out_finish (input_filename)
   /* Output location list section if necessary.  */
   if (have_location_lists)
     {
-      /* Output the location lists info. */
+      /* Output the location lists info.  */
       named_section_flags (DEBUG_LOC_SECTION, SECTION_DEBUG, 1);
       output_location_lists (die);
       have_location_lists = 0;
@@ -11846,7 +11846,7 @@ dwarf2out_finish (input_filename)
       output_ranges ();
     }
 
-  /* Have to end the primary source file. */
+  /* Have to end the primary source file.  */
   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
     { 
       named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG, 1);
index a61ffc38347c9cc616a5c564dc034271d4a79766..057dee29d8246956cc6643aafcb232722e2484d2 100644 (file)
@@ -2382,7 +2382,7 @@ output_bound_representation (bound, dim_num, u_or_l)
           comprehend that a missing upper bound specification in a
           array type used for a storage class `auto' local array variable
           indicates that the upper bound is both unknown (at compile-
-          time) and unknowable (at run-time) due to optimization. */
+          time) and unknowable (at run-time) due to optimization.  */
 
        if (! optimize)
          {
@@ -2584,7 +2584,7 @@ field_byte_offset (decl)
 
      The value we deduce is then used (by the callers of this routine) to
      generate AT_location and AT_bit_offset attributes for fields (both
-     bit-fields and, in the case of AT_location, regular fields as well). */
+     bit-fields and, in the case of AT_location, regular fields as well).  */
 
   /* Figure out the bit-distance from the start of the structure to the
      "deepest" bit of the bit-field.  */
index 755527fa3af04b1aeab0b2148338331202897201..c3ba4525a3eeb88b09f1da701d102b6fa8c371bc 100644 (file)
@@ -379,7 +379,7 @@ gen_rtx_SUBREG (mode, reg, offset)
 
 /* Generate a SUBREG representing the least-significant part
  * of REG if MODE is smaller than mode of REG, otherwise
- * paradoxical SUBREG. */
+ * paradoxical SUBREG.  */
 rtx
 gen_lowpart_SUBREG (mode, reg)
      enum machine_mode mode;
@@ -1483,12 +1483,12 @@ operand_subword (op, offset, validate_address, mode)
   if (mode == VOIDmode)
     abort ();
 
-  /* If OP is narrower than a word, fail. */
+  /* If OP is narrower than a word, fail.  */
   if (mode != BLKmode
       && (GET_MODE_SIZE (mode) < UNITS_PER_WORD))
     return 0;
 
-  /* If we want a word outside OP, return zero. */
+  /* If we want a word outside OP, return zero.  */
   if (mode != BLKmode
       && (offset + 1) * UNITS_PER_WORD > GET_MODE_SIZE (mode))
     return const0_rtx;
@@ -1886,7 +1886,7 @@ unshare_all_decls (blk)
 }
 
 /* Go through all virtual stack slots of a function and mark them as
-   not shared. */
+   not shared.  */
 static void
 reset_used_decls (blk)
      tree blk;
@@ -3606,7 +3606,7 @@ force_next_line_note ()
 }
 
 /* Place a note of KIND on insn INSN with DATUM as the datum. If a
-   note of this type already exists, remove it first. */
+   note of this type already exists, remove it first.  */
 
 void
 set_unique_reg_note (insn, kind, datum)
@@ -3867,7 +3867,7 @@ gen_sequence ()
   if (len == 1
       && ! RTX_FRAME_RELATED_P (first_insn)
       && GET_CODE (first_insn) == INSN
-      /* Don't throw away any reg notes. */
+      /* Don't throw away any reg notes.  */
       && REG_NOTES (first_insn) == 0)
     return PATTERN (first_insn);
 
index 822c35682aef91851c1b341af76638f520bb9900..3058e10f8f11fbdec7d592a07341449188ba95ab 100644 (file)
@@ -2865,7 +2865,7 @@ void
 expand_builtin_unwind_init ()
 {
   /* Set this so all the registers get saved in our frame; we need to be
-     able to copy the saved values for any registers from frames we unwind. */
+     able to copy the saved values for any registers from frames we unwind.  */
   current_function_has_nonlocal_label = 1;
 
 #ifdef SETUP_FRAME_ADDRESSES
index a8249999c9849b3e233d870297353c94d1906fc0..9f2357aff443aea244b99b0e5c5de1318fd664fc 100644 (file)
@@ -678,7 +678,7 @@ set_mem_attributes (ref, t, objectp)
   MEM_IN_STRUCT_P (ref) = AGGREGATE_TYPE_P (type);
 
   /* If we are making an object of this type, we know that it is a scalar if
-     the type is not an aggregate. */
+     the type is not an aggregate.  */
   if (objectp && ! AGGREGATE_TYPE_P (type))
     MEM_SCALAR_P (ref) = 1;
 
@@ -1663,7 +1663,7 @@ probe_stack_range (first, size)
    otherwise 0.
    OUTGOING is 1 if on a machine with register windows this function
    should return the register in which the function will put its result
-   and 0 otherwise. */
+   and 0 otherwise.  */
 
 rtx
 hard_function_value (valtype, func, outgoing)
index d334f6dad1f61458e40815186eacf4f042dc7d79..68efa79a85141d76a7a17ad5443014595ceef91f 100644 (file)
@@ -4557,7 +4557,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
 
       /* Note that ABS doesn't yield a positive number for INT_MIN, but 
         that is compensated by the subsequent overflow when subtracting 
-        one / negating. */
+        one / negating.  */
 
       if (abs_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing)
        tem = expand_unop (mode, abs_optab, op0, subtarget, 1);
index 2ba1b5a6b4c46409d02d19e65d1421ed73cda52c..11aa3dce538e4d1311febd3cb92be035076816b6 100644 (file)
@@ -6647,7 +6647,7 @@ expand_expr (exp, target, tmode, modifier)
     case LABELED_BLOCK_EXPR:
       if (LABELED_BLOCK_BODY (exp))
        expand_expr_stmt (LABELED_BLOCK_BODY (exp));
-      /* Should perhaps use expand_label, but this is simpler and safer. */
+      /* Should perhaps use expand_label, but this is simpler and safer.  */
       do_pending_stack_adjust ();
       emit_label (label_rtx (LABELED_BLOCK_LABEL (exp)));
       return const0_rtx;
index 7fe007485c19056ec07d3151e18614de83b68018..f7d32196a86e6de1a636d02ed34a01a31fc306ae 100644 (file)
@@ -3822,7 +3822,7 @@ try_crossjump_to_edge (mode, e1, e2)
   if (e1->flags & EDGE_COMPLEX)
     return false;
 
-  /* Look for the common insn sequence, part the first ... */
+  /* Look for the common insn sequence, part the first ...  */
   if (!outgoing_edges_match (src1, src2))
     return false;
 
@@ -5802,7 +5802,7 @@ insn_dead_p (pbi, x, call_ok, notes)
             If so, this memory write is dead (remember, we're walking
             backwards from the end of the block to the start).  Since
             rtx_equal_p does not check the alias set or flags, we also
-            must have the potential for them to conflict (anti_dependence). */
+            must have the potential for them to conflict (anti_dependence).  */
          for (temp = pbi->mem_set_list; temp != 0; temp = XEXP (temp, 1))
            if (anti_dependence (r, XEXP (temp, 0)))
              {
@@ -8385,7 +8385,7 @@ verify_flow_info ()
   for (i = n_basic_blocks - 1; i >= 0; i--)
     {
       basic_block bb = BASIC_BLOCK (i);
-      /* Check correctness of edge lists. */
+      /* Check correctness of edge lists.  */
       edge e;
       int has_fallthru = 0;
 
@@ -9676,7 +9676,7 @@ flow_loop_pre_header_scan (loop)
 
       /* Count number of edges along trace from loop header to
         root of pre-header extended basic block.  Usually this is
-        only one or two edges. */
+        only one or two edges.  */
       num++;
       while (ebb->pred->src != ENTRY_BLOCK_PTR && ! ebb->pred->pred_next)
        {
index 6a606eaa612661a59c30df4253341192bba3515f..5ffaf1057420f8be0cd52bcad4044eb6c8ce744c 100644 (file)
@@ -1354,7 +1354,7 @@ split_tree (in, code, conp, litp, negate_p)
   *conp = 0;
   *litp = 0;
 
-  /* Strip any conversions that don't change the machine mode or signedness. */
+  /* Strip any conversions that don't change the machine mode or signedness.  */
   STRIP_SIGN_NOPS (in);
 
   if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST)
@@ -1385,7 +1385,7 @@ split_tree (in, code, conp, litp, negate_p)
        *conp = op1, neg_conp_p = neg1_p, op1 = 0;
 
       /* If we haven't dealt with either operand, this is not a case we can
-        decompose.  Otherwise, VAR is either of the ones remaining, if any. */
+        decompose.  Otherwise, VAR is either of the ones remaining, if any.  */
       if (op0 != 0 && op1 != 0)
        var = in;
       else if (op0 != 0)
@@ -1546,7 +1546,7 @@ int_const_binop (code, arg1, arg2, notrunc, forsize)
          break;
        }
 
-      /* ... fall through ... */
+      /* ... fall through ...  */
 
     case ROUND_DIV_EXPR:
       if (int2h == 0 && int2l == 1)
@@ -1579,7 +1579,7 @@ int_const_binop (code, arg1, arg2, notrunc, forsize)
          break;
        }
 
-      /* ... fall through ... */
+      /* ... fall through ...  */
 
     case ROUND_MOD_EXPR:
       overflow = div_and_round_double (code, uns,
@@ -1745,11 +1745,11 @@ const_binop (code, arg1, arg2, notrunc)
       args.code = code;
 
       if (do_float_handler (const_binop_1, (PTR) &args))
-       /* Receive output from const_binop_1. */
+       /* Receive output from const_binop_1.  */
        t = args.t;
       else
        {
-         /* We got an exception from const_binop_1. */
+         /* We got an exception from const_binop_1.  */
          t = copy_node (arg1);
          overflow = 1;
        }
@@ -1980,9 +1980,9 @@ size_diffop (arg0, arg1)
 /* This structure is used to communicate arguments to fold_convert_1.  */
 struct fc_args
 {
-  tree arg1;                   /* Input: value to convert. */
-  tree type;                   /* Input: type to convert value to. */
-  tree t;                      /* Ouput: result of conversion. */
+  tree arg1;                   /* Input: value to convert.  */
+  tree type;                   /* Input: type to convert value to.  */
+  tree t;                      /* Ouput: result of conversion.  */
 };
 
 /* Function to convert floating-point constants, protected by floating
@@ -2383,7 +2383,7 @@ operand_equal_p (arg0, arg1, only_const)
 
     case 'r':
       /* If either of the pointer (or reference) expressions we are dereferencing
-        contain a side effect, these cannot be equal. */
+        contain a side effect, these cannot be equal.  */
       if (TREE_SIDE_EFFECTS (arg0)
          || TREE_SIDE_EFFECTS (arg1))
        return 0;
@@ -3265,7 +3265,7 @@ range_binop (code, type, arg0, upper0_p, arg1, upper1_p)
      the same. But, this is computer arithmetic, where numbers are finite.
      We can therefore make the transformation of any unbounded range with
      the value Z, Z being greater than any representable number. This permits
-     us to treat unbounded ranges as equal. */
+     us to treat unbounded ranges as equal.  */
   sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
   sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
   switch (code)
@@ -4552,7 +4552,7 @@ extract_muldiv (t, c, code, wide_type)
 
       /* The last case is if we are a multiply.  In that case, we can
         apply the distributive law to commute the multiply and addition
-        if the multiplication of the constants doesn't overflow. */
+        if the multiplication of the constants doesn't overflow.  */
       if (code == MULT_EXPR)
        return fold (build (tcode, ctype, fold (build (code, ctype,
                                                       convert (ctype, op0),
@@ -4570,7 +4570,7 @@ extract_muldiv (t, c, code, wide_type)
          && integer_zerop (const_binop (TRUNC_MOD_EXPR, op1, c, 0)))
        return omit_one_operand (type, integer_zero_node, op0);
 
-      /* ... fall through ... */
+      /* ... fall through ...  */
 
     case TRUNC_DIV_EXPR:  case CEIL_DIV_EXPR:  case FLOOR_DIV_EXPR:
     case ROUND_DIV_EXPR:  case EXACT_DIV_EXPR:
@@ -5564,7 +5564,7 @@ fold (expr)
             associate each group together, the constants with literals,
             then the result with variables.  This increases the chances of
             literals being recombined later and of generating relocatable
-            expressions for the sum of a constant and literal. */
+            expressions for the sum of a constant and literal.  */
          var0 = split_tree (arg0, code, &con0, &lit0, 0);
          var1 = split_tree (arg1, code, &con1, &lit1, code == MINUS_EXPR);
 
@@ -5854,7 +5854,7 @@ fold (expr)
              && 0 != (tem = const_binop (code, build_real (type, dconst1),
                                          arg1, 0)))
            return fold (build (MULT_EXPR, type, arg0, tem));
-         /* Find the reciprocal if optimizing and the result is exact. */
+         /* Find the reciprocal if optimizing and the result is exact.  */
          else if (optimize)
            {
              REAL_VALUE_TYPE r;
@@ -6045,7 +6045,7 @@ fold (expr)
         truth and/or operations and the transformation will still be
         valid.   Also note that we only care about order for the
         ANDIF and ORIF operators.  If B contains side effects, this
-        might change the truth-value of A. */
+        might change the truth-value of A.  */
       if (TREE_CODE (arg0) == TREE_CODE (arg1)
          && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
              || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
@@ -7342,7 +7342,7 @@ multiple_of_p (type, top, bottom)
              < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
        return 0;
 
-      /* .. fall through ... */
+      /* .. fall through ...  */
 
     case SAVE_EXPR:
       return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
index 5a169c69f6b53ec3edc92a0230dbaf07d1dc7ded..f344cb53fdb70c06f73296eb27ae1c738e630851 100644 (file)
@@ -811,7 +811,7 @@ assign_stack_temp_for_type (mode, size, keep, type)
      alias set for the memory.  */
   set_mem_alias_set (p->slot, type ? get_alias_set (type) : 0);
 
-  /* If a type is specified, set the relevant flags. */
+  /* If a type is specified, set the relevant flags.  */
   if (type != 0)
     {
       RTX_UNCHANGING_P (p->slot) = TYPE_READONLY (type);
@@ -5703,7 +5703,7 @@ round_trampoline_addr (tramp)
 
 /* Given a trampoline address, round it then apply any
    platform-specific adjustments so that the result can be used for a
-   function call . */
+   function call .  */
 
 static rtx
 adjust_trampoline_addr (tramp)