cpplex.c: Fix comment formatting.
authorKazu Hirata <kazu@hxi.com>
Tue, 30 Apr 2002 20:48:55 +0000 (20:48 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 30 Apr 2002 20:48:55 +0000 (20:48 +0000)
* cpplex.c: Fix comment formatting.
* function.c: Likewise.
* integrate.c: Likewise.
* regrename.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* tree-inline.c: Likewise.

From-SVN: r52972

gcc/ChangeLog
gcc/cpplex.c
gcc/function.c
gcc/integrate.c
gcc/regrename.c
gcc/sibcall.c
gcc/simplify-rtx.c
gcc/tree-inline.c

index b7daa5c1151421c3c699e6d0303f3c4714b8c3b2..b8a6637ed4efc23493a3a6758b117956d1f6cb6a 100644 (file)
@@ -1,3 +1,13 @@
+2002-04-30  Kazu Hirata  <kazu@hxi.com>
+
+       * cpplex.c: Fix comment formatting.
+       * function.c: Likewise.
+       * integrate.c: Likewise.
+       * regrename.c: Likewise.
+       * sibcall.c: Likewise.
+       * simplify-rtx.c: Likewise.
+       * tree-inline.c: Likewise.
+
 2002-04-30  John David Anglin  <dave@hiauly1.hia.nrc.ca>
 
        * config.gcc (hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-rtems*,
index 6a44b86d15f944b115c903ff4a49516daece6c75..bc1297845619498f4566349b40491360cf3c38b6 100644 (file)
@@ -763,7 +763,7 @@ save_comment (pfile, token, from, type)
   buffer[0] = '/';
   memcpy (buffer + 1, from, len - 1);
 
-  /* Finish conversion to a C comment, if necessary. */
+  /* Finish conversion to a C comment, if necessary.  */
   if (pfile->state.in_directive && type == '/')
     {
       buffer[1] = '*';
index 56e90147b3291685ef1572bb94e72a3a616116de..e90fddd3b8746a9aa4e41e441827ad4261196f1c 100644 (file)
@@ -2567,7 +2567,7 @@ fixup_memory_subreg (x, insn, promoted_mode, uncritical)
   if (BYTES_BIG_ENDIAN)
     /* If the PROMOTED_MODE is wider than the mode of the MEM, adjust
        the offset so that it points to the right location within the
-       MEM. */
+       MEM.  */
     offset -= (GET_MODE_SIZE (promoted_mode) - GET_MODE_SIZE (GET_MODE (mem)));
 
   if (!flag_force_addr
index 66be25bd6836625236f00d72fe4649ddd447f6b5..2ea46c9363f93fcc0c2fc0b68eff29919610c58e 100644 (file)
@@ -1396,7 +1396,7 @@ copy_insn_list (insns, map, static_chain_value)
              memory references via that register can then be
              identified as static chain references.  We assume that
              the register is only assigned once, and that the static
-             chain address is only live in one register at a time. */
+             chain address is only live in one register at a time.  */
 
          else if (static_chain_value != 0
                   && set != 0
index efdd9f9f24bca841442bb8412203923e84594c26..82f3ae97a04efdf54387792d2c1d7232b3667f9d 100644 (file)
@@ -1108,7 +1108,7 @@ kill_value (x, vd)
   /* SUBREGS are supposed to have been eliminated by now.  But some
      ports, e.g. i386 sse, use them to smuggle vector type information
      through to instruction selection.  Each such SUBREG should simplify,
-     so if we get a NULL  we've done something wrong elsewhere. */
+     so if we get a NULL  we've done something wrong elsewhere.  */
 
   if (GET_CODE (x) == SUBREG)
     x = simplify_subreg (GET_MODE (x), SUBREG_REG (x),
index 6e753fa2fa99bbcc3459f2d16c9a22776a05b486..ec13d89280b2f1e39c01c53ecba45ac67ae0204c 100644 (file)
@@ -758,7 +758,7 @@ optimize_sibling_and_tail_recursive_calls ()
        }
 
       /* Similarly, invalidate RTX_UNCHANGING_P for any incoming
-        arguments passed in registers. */
+        arguments passed in registers.  */
       for (arg = DECL_ARGUMENTS (current_function_decl); 
           arg; 
           arg = TREE_CHAIN (arg))
index 3bc2824b58ad9708e4a18e3003de6405d0c55ecb..8441ea9e985f942c946eed41db67d611b97b491e 100644 (file)
@@ -1904,7 +1904,7 @@ simplify_relational_operation (code, mode, op0, op1)
       REAL_VALUE_FROM_CONST_DOUBLE (d0, trueop0);
       REAL_VALUE_FROM_CONST_DOUBLE (d1, trueop1);
 
-      /* Comparisons are unordered iff at least one of the values is NaN. */
+      /* Comparisons are unordered iff at least one of the values is NaN.  */
       if (REAL_VALUE_ISNAN (d0) || REAL_VALUE_ISNAN (d1))
        switch (code)
          {
index 1385e8389be3cd10912d67da882eac70e5dda044..b102b51b5d62561bc6b56f46cdbe371591010e91 100644 (file)
@@ -678,7 +678,7 @@ inlinable_function_p (fn, id)
   /* Assume it is not inlinable.  */
   inlinable = 0;
        
-  /* The number of instructions (estimated) of current function. */
+  /* The number of instructions (estimated) of current function.  */
   currfn_insns = DECL_NUM_STMTS (fn) * INSNS_PER_STMT;
 
   /* If we're not inlining things, then nothing is inlinable.  */
@@ -709,7 +709,7 @@ inlinable_function_p (fn, id)
   DECL_UNINLINABLE (fn) = ! inlinable;
 
   /* In case we don't disregard the inlining limits and we basically
-     can inline this function, investigate further. */
+     can inline this function, investigate further.  */
   if (! (*lang_hooks.tree_inlining.disregard_inline_limits) (fn)
       && inlinable)
     { 
@@ -717,13 +717,13 @@ inlinable_function_p (fn, id)
                     + currfn_insns;
       /* In the extreme case that we have exceeded the recursive inlining
          limit by a huge factor (128), we just say no. Should not happen
-         in real life. */
+         in real life.  */
       if (sum_insns > MAX_INLINE_INSNS * 128)
         inlinable = 0;
       /* If we did not hit the extreme limit, we use a linear function
          with slope -1/MAX_INLINE_SLOPE to exceedingly decrease the
          allowable size. We always allow a size of MIN_INLINE_INSNS
-         though. */
+         though.  */
       else if ((sum_insns > MAX_INLINE_INSNS)
               && (currfn_insns > MIN_INLINE_INSNS))
         {
@@ -988,7 +988,7 @@ expand_call_inline (tp, walk_subtrees, data)
 
   /* Our function now has more statements than it did before.  */
   DECL_NUM_STMTS (VARRAY_TREE (id->fns, 0)) += DECL_NUM_STMTS (fn);
-  /* For accounting, subtract one for the saved call/ret. */
+  /* For accounting, subtract one for the saved call/ret.  */
   id->inlined_stmts += DECL_NUM_STMTS (fn) - 1;
 
   /* Recurse into the body of the just inlined function.  */