h8300.c: Fix comment typos.
authorKazu Hirata <kazu@hxi.com>
Tue, 18 Dec 2001 05:12:29 +0000 (05:12 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 18 Dec 2001 05:12:29 +0000 (05:12 +0000)
* config/h8300/h8300.c: Fix comment typos.
* config/h8300/h8300.h: Fix comment formatting.

From-SVN: r48143

gcc/ChangeLog
gcc/config/h8300/h8300.c
gcc/config/h8300/h8300.h

index 0b784c5a70f30cc79b144c89a9b5b0d2ba52a1de..c57ab2cda9097f609865aaa7dbe665ba4836e546 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-18  Kazu Hirata  <kazu@hxi.com>
+
+       * config/h8300/h8300.c: Fix comment typos.
+       * config/h8300/h8300.h: Fix comment formatting.
+
 2001-12-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * machmode.h (mode_name, mode_class, mode_size, mode_unit_size,
index e16c54ca3f6bf246f7da38cd0b3db13b89aae3bd..5c298e7529f86759858be8611b906fc02305f86e 100644 (file)
@@ -3326,8 +3326,8 @@ h8300_adjust_insn_length (insn, length)
           && GET_CODE (addr) == REG)
        return -6;
 
-      /* On the H8/300H and H8/300S, reg + d, for small displacements is 4
-        bytes shorter than indicated in the machine description.  */
+      /* On the H8/300H and H8/S, reg + d, for small displacements is
+        bytes shorter than indicated in the machine description.  */
       if ((TARGET_H8300H || TARGET_H8300S)
          && GET_CODE (addr) == PLUS
          && GET_CODE (XEXP (addr, 0)) == REG
@@ -3336,7 +3336,7 @@ h8300_adjust_insn_length (insn, length)
          && INTVAL (XEXP (addr, 1)) < 32767)
        return -4;
 
-      /* On the H8/300H and H8/300S, abs:16 is two bytes shorter than the
+      /* On the H8/300H and H8/S, abs:16 is two bytes shorter than the
         more general abs:24.  */
       if ((TARGET_H8300H || TARGET_H8300S)
          && GET_CODE (addr) == SYMBOL_REF
@@ -3395,8 +3395,8 @@ h8300_adjust_insn_length (insn, length)
       if (mode == QImode && shift <= 4)
        return -(20 - shift * 2);
 
-      /* Similarly for HImode and SImode shifts by
-        small constants on the H8/300H and H8/300S.  */
+      /* Similarly for HImode and SImode shifts by small constants on
+        the H8/300H and H8/S.  */
       if ((TARGET_H8300H || TARGET_H8300S)
          && (mode == HImode || mode == SImode) && shift <= 4)
        return -(20 - shift * 2);
index 0535d5f2c0d22be3c5454808234bdba8f7c44225..ca52689e697a15447dbebc6552483d0a252385a1 100644 (file)
@@ -554,7 +554,7 @@ enum reg_class {
    We have two registers that can be eliminated on the h8300.  First, the
    frame pointer register can often be eliminated in favor of the stack
    pointer register.  Secondly, the argument pointer register can always be
-   eliminated; it is replaced with either the stack or frame pointer. */
+   eliminated; it is replaced with either the stack or frame pointer.  */
 
 #define ELIMINABLE_REGS                                        \
 {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM},          \
@@ -627,7 +627,7 @@ enum reg_class {
 
 /* When defined, the compiler allows registers explicitly used in the
    rtl to be used as spill registers but prevents the compiler from
-   extending the lifetime of these registers. */
+   extending the lifetime of these registers.  */
 
 #define SMALL_REGISTER_CLASSES 1
 \f
@@ -946,7 +946,7 @@ struct cum_arg
 /* Define as C expression which evaluates to nonzero if the tablejump
    instruction expects the table to contain offsets from the address of the
    table.
-   Do not define this if the table should contain absolute addresses. */
+   Do not define this if the table should contain absolute addresses.  */
 /*#define CASE_VECTOR_PC_RELATIVE 1 */
 
 /* Specify the tree operation to be used to convert reals to integers.  */
@@ -1227,7 +1227,7 @@ readonly_data ()                                                  \
 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \
    ASM_OUTPUT_LABEL(FILE, NAME)
 
-/* The prefix to add to user-visible assembler symbols. */
+/* The prefix to add to user-visible assembler symbols.  */
 
 #define USER_LABEL_PREFIX "_"