diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-12-21 05:22:17 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-12-21 05:22:17 +0000 |
commit | 40b982a9c5c21c0454f897f05497f28a45aa3cd9 (patch) | |
tree | 2dfcec1d1e545ab88a22d1b179a5bb6ebb60d7b5 | |
parent | 609545727840272d8b8f0e4f488d4ef22035b9c3 (diff) | |
download | gcc-40b982a9c5c21c0454f897f05497f28a45aa3cd9.zip gcc-40b982a9c5c21c0454f897f05497f28a45aa3cd9.tar.gz gcc-40b982a9c5c21c0454f897f05497f28a45aa3cd9.tar.bz2 |
fr30.md: Fix a comment typo.
* config/fr30/fr30.md: Fix a comment typo.
* config/i386/i386.c: Likewise.
* config/ip2k/ip2k.h: Likewise.
From-SVN: r60379
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/fr30/fr30.md | 2 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 | ||||
-rw-r--r-- | gcc/config/ip2k/ip2k.h | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc8df5d..6261fe3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-12-21 Kazu Hirata <kazu@cs.umass.edu> + + * config/fr30/fr30.md: Fix a comment typo. + * config/i386/i386.c: Likewise. + * config/ip2k/ip2k.h: Likewise. + 2002-12-20 Jim Wilson <wilson@redhat.com> * config/rs6000/spe.h (__ev_subifw): Reverse arguments. diff --git a/gcc/config/fr30/fr30.md b/gcc/config/fr30/fr30.md index 6d2a291..442b910 100644 --- a/gcc/config/fr30/fr30.md +++ b/gcc/config/fr30/fr30.md @@ -36,7 +36,7 @@ ;; Define an attribute to be used by the delay slot code. ;; An instruction by default is considered to be 'delyabable' ;; that is, it can be placed into a delay slot, but it is not -;; itself a delyaed branch type instruction. An instruction +;; itself a delayed branch type instruction. An instruction ;; whoes type is 'delayed' is one which has a delay slot, and ;; an instruction whoes delay_type is 'other' is one which does ;; not have a delay slot, nor can it be placed into a delay slot. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 7823328..984abaf 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3079,7 +3079,7 @@ register_and_not_any_fp_reg_operand (op, mode) return register_operand (op, mode) && !ANY_FP_REG_P (op); } -/* Return nonzero of OP is a register operand other than an +/* Return nonzero if OP is a register operand other than an i387 fp register. */ int register_and_not_fp_reg_operand (op, mode) diff --git a/gcc/config/ip2k/ip2k.h b/gcc/config/ip2k/ip2k.h index 467dfa7..6957021 100644 --- a/gcc/config/ip2k/ip2k.h +++ b/gcc/config/ip2k/ip2k.h @@ -680,7 +680,7 @@ enum reg_class { #define MODE_BASE_REG_CLASS(MODE) ((MODE) == QImode ? PTR_REGS : DP_SP_REGS) /* This is a variation of the BASE_REG_CLASS macro which allows - the selection of a base register in a mode depenedent manner. + the selection of a base register in a mode dependent manner. If MODE is VOIDmode then it should return the same value as BASE_REG_CLASS. */ |