diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-11-02 12:51:05 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-11-02 12:51:05 +0000 |
commit | 46eefac471e2770398bfaa0a65ec1d1d02f4f756 (patch) | |
tree | c36df6f50a25f90134c20bd169f511418bf2f154 /gcc | |
parent | 102b60d127548a679bd4f65f724c134964cedbf6 (diff) | |
download | gcc-46eefac471e2770398bfaa0a65ec1d1d02f4f756.zip gcc-46eefac471e2770398bfaa0a65ec1d1d02f4f756.tar.gz gcc-46eefac471e2770398bfaa0a65ec1d1d02f4f756.tar.bz2 |
h8300.h: Fix comment typos.
* config/h8300/h8300.h: Fix comment typos.
* config/h8300/h8300.md: Likewise.
* config/h8300/lib1funcs.asm: Likewise.
From-SVN: r58748
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 4 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.md | 4 | ||||
-rw-r--r-- | gcc/config/h8300/lib1funcs.asm | 8 |
4 files changed, 14 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c939e5e..7613357 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-11-02 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.h: Fix comment typos. + * config/h8300/h8300.md: Likewise. + * config/h8300/lib1funcs.asm: Likewise. + 2002-11-02 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> Revert this change: diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 4d4fcaa..075ddb8 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -125,7 +125,7 @@ extern int target_flags; /* Align all values on the H8/300H the same way as the H8/300. Specifically, 32 bit and larger values are aligned on 16 bit boundaries. - This is all the hardware requires, but the default is 32 bits for the 300H. + This is all the hardware requires, but the default is 32 bits for the H8/300H. ??? Now watch someone add hardware floating point requiring 32 bit alignment. */ #define TARGET_ALIGN_300 (target_flags & MASK_ALIGN_300) @@ -977,7 +977,7 @@ struct cum_arg #define Pmode (TARGET_H8300H || TARGET_H8300S ? SImode : HImode) /* ANSI C types. - We use longs for the 300H because ints can be 16 or 32. + We use longs for the H8/300H and the H8S because ints can be 16 or 32. GCC requires SIZE_TYPE to be the same size as pointers. */ #define SIZE_TYPE (TARGET_H8300 ? "unsigned int" : "long unsigned int") #define PTRDIFF_TYPE (TARGET_H8300 ? "int" : "long int") diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index ed1ee86..d794e44 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -1610,7 +1610,7 @@ [(set_attr "length" "2,10") (set_attr "cc" "set_znv,set_znv")]) -;; The compiler can synthesize a 300H variant of this which is +;; The compiler can synthesize a H8/300H variant of this which is ;; just as efficient as one that we'd create (define_insn "zero_extendqisi2" [(set (match_operand:SI 0 "register_operand" "=r,r") @@ -1672,7 +1672,7 @@ [(set_attr "length" "2") (set_attr "cc" "set_znv")]) -;; The compiler can synthesize a 300H variant of this which is +;; The compiler can synthesize a H8/300H variant of this which is ;; just as efficient as one that we'd create (define_insn "extendqisi2" [(set (match_operand:SI 0 "register_operand" "=r,r") diff --git a/gcc/config/h8300/lib1funcs.asm b/gcc/config/h8300/lib1funcs.asm index 734b25d..2f62572 100644 --- a/gcc/config/h8300/lib1funcs.asm +++ b/gcc/config/h8300/lib1funcs.asm @@ -497,10 +497,10 @@ reti: POPP S2P rts - ; takes A0/A1 numerator (A0P for 300H) - ; A2/A3 denominator (A1P for 300H) - ; returns A0/A1 quotient (A0P for 300H) - ; S0/S1 remainder (S0P for 300H) + ; takes A0/A1 numerator (A0P for H8/300H) + ; A2/A3 denominator (A1P for H8/300H) + ; returns A0/A1 quotient (A0P for H8/300H) + ; S0/S1 remainder (S0P for H8/300H) ; trashes S2 #ifdef __H8300__ |