From 9bf7ec4ebb94d686ec6b4e981931b84a0c03f41b Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Tue, 18 Dec 2001 05:12:29 +0000 Subject: [PATCH] h8300.c: Fix comment typos. * config/h8300/h8300.c: Fix comment typos. * config/h8300/h8300.h: Fix comment formatting. From-SVN: r48143 --- gcc/ChangeLog | 5 +++++ gcc/config/h8300/h8300.c | 10 +++++----- gcc/config/h8300/h8300.h | 8 ++++---- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b784c5a70f..c57ab2cda90 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-12-18 Kazu Hirata + + * config/h8300/h8300.c: Fix comment typos. + * config/h8300/h8300.h: Fix comment formatting. + 2001-12-17 Kaveh R. Ghazi * machmode.h (mode_name, mode_class, mode_size, mode_unit_size, diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index e16c54ca3f6..5c298e7529f 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -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 + 4 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); diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 0535d5f2c0d..ca52689e697 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -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 @@ -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 "_" -- 2.30.2