Commit 46eefac4 by Kazu Hirata Committed by Kazu Hirata

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
parent 102b60d1
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:
......
......@@ -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")
......
......@@ -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")
......
......@@ -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__
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment