Commit 2c54abce by Kazu Hirata Committed by Jeff Law

invoke.texi (H8/300 Options): Fix typos.

	* invoke.texi (H8/300 Options): Fix typos.
	* config/h8300.c: Fix formatting.
	* config/h8300.h: Fix comment typos.
	(OVERRIDE_OPTIONS): Fix formatting.

From-SVN: r35677
parent 718fe406
2000-08-13 Kazu Hirata <kazu@hxi.com> 2000-08-13 Kazu Hirata <kazu@hxi.com>
* invoke.texi (H8/300 Options): Fix typos.
* config/h8300.c: Fix formatting.
* config/h8300.h: Fix comment typos.
(OVERRIDE_OPTIONS): Fix formatting.
* function.c: Fix formatting. * function.c: Fix formatting.
* cse.c: Fix formatting. * cse.c: Fix formatting.
......
...@@ -22,7 +22,7 @@ along with GNU CC; see the file COPYING. If not, write to ...@@ -22,7 +22,7 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330, the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
/* Which cpu to compile for. /* Which CPU to compile for.
We use int for CPU_TYPE to avoid lots of casts. */ We use int for CPU_TYPE to avoid lots of casts. */
#if 0 /* defined in insn-attr.h, here for documentation */ #if 0 /* defined in insn-attr.h, here for documentation */
enum attr_cpu { CPU_H8300, CPU_H8300H }; enum attr_cpu { CPU_H8300, CPU_H8300H };
...@@ -136,9 +136,11 @@ extern int target_flags; ...@@ -136,9 +136,11 @@ extern int target_flags;
/* Do things that must be done once at start up. */ /* Do things that must be done once at start up. */
#define OVERRIDE_OPTIONS \ #define OVERRIDE_OPTIONS \
do { \ do \
{ \
h8300_init_once (); \ h8300_init_once (); \
} while (0) } \
while (0)
/* Default target_flags if no switches specified. */ /* Default target_flags if no switches specified. */
...@@ -267,7 +269,7 @@ do { \ ...@@ -267,7 +269,7 @@ do { \
Aside from that, you can include as many other registers as you Aside from that, you can include as many other registers as you
like. like.
h8 destroys r0,r1,r2,r3. */ H8 destroys r0,r1,r2,r3. */
#define CALL_USED_REGISTERS \ #define CALL_USED_REGISTERS \
{ 1, 1, 1, 1, 0, 0, 0, 1, 1, 1 } { 1, 1, 1, 1, 0, 0, 0, 1, 1, 1 }
......
...@@ -6632,10 +6632,11 @@ Generate code for the H8/S. ...@@ -6632,10 +6632,11 @@ Generate code for the H8/S.
Make @code{int} data 32 bits by default. Make @code{int} data 32 bits by default.
@item -malign-300 @item -malign-300
On the h8/300h, use the same alignment rules as for the h8/300. On the H8/300H and H8/S, use the same alignment rules as for the H8/300.
The default for the h8/300h is to align longs and floats on 4 byte boundaries. The default for the H8/300H and H8/S is to align longs and floats on 4
byte boundaries.
@samp{-malign-300} causes them to be aligned on 2 byte boundaries. @samp{-malign-300} causes them to be aligned on 2 byte boundaries.
This option has no effect on the h8/300. This option has no effect on the H8/300.
@end table @end table
@node SH Options @node SH Options
......
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