Commit 8bd06267 by Kazu Hirata Committed by Kazu Hirata

h8300.c: Fix formatting.

	* config/h8300/h8300.c: Fix formatting.
	* config/h8300/h8300.h: Likewise.
	* config/h8300/h8300.md: Likewise.

From-SVN: r56917
parent 39587bb9
2002-09-07 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c: Fix formatting.
* config/h8300/h8300.h: Likewise.
* config/h8300/h8300.md: Likewise.
2002-09-07 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> 2002-09-07 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* cfgcleanup.c (try_crossjump_to_edge): Fix updating of liveness * cfgcleanup.c (try_crossjump_to_edge): Fix updating of liveness
......
...@@ -315,9 +315,9 @@ h8300_init_once () ...@@ -315,9 +315,9 @@ h8300_init_once ()
target_flags |= 1; target_flags |= 1;
} }
/* Some of the shifts are optimized for speed by default. /* Some of the shifts are optimized for speed by default.
See http://gcc.gnu.org/ml/gcc-patches/2002-07/msg01858.html See http://gcc.gnu.org/ml/gcc-patches/2002-07/msg01858.html
If optimizing for size, change shift_alg for those shift to If optimizing for size, change shift_alg for those shift to
SHIFT_LOOP. */ SHIFT_LOOP. */
if(optimize_size) if(optimize_size)
{ {
...@@ -484,7 +484,7 @@ pop (file, rn) ...@@ -484,7 +484,7 @@ pop (file, rn)
PC PC
FP <- fp FP <- fp
<locals> <locals>
<saved registers> <- sp <saved registers> <- sp
This is what the stack looks like after the prolog of This is what the stack looks like after the prolog of
a function which doesn't have a frame: a function which doesn't have a frame:
...@@ -492,7 +492,7 @@ pop (file, rn) ...@@ -492,7 +492,7 @@ pop (file, rn)
<args> <args>
PC PC
<locals> <locals>
<saved registers> <- sp <saved registers> <- sp
*/ */
/* Output assembly language code for the function prologue. */ /* Output assembly language code for the function prologue. */
...@@ -700,7 +700,7 @@ asm_file_start (file) ...@@ -700,7 +700,7 @@ asm_file_start (file)
{ {
fprintf (file, ";\tGCC For the Hitachi H8/300\n"); fprintf (file, ";\tGCC For the Hitachi H8/300\n");
fprintf (file, ";\tBy Hitachi America Ltd and Cygnus Support\n"); fprintf (file, ";\tBy Hitachi America Ltd and Cygnus Support\n");
if (optimize_size) if (optimize_size)
fprintf (file, "; -Os\n"); fprintf (file, "; -Os\n");
else if (optimize) else if (optimize)
......
...@@ -392,8 +392,8 @@ enum reg_class { ...@@ -392,8 +392,8 @@ enum reg_class {
#define REG_CLASS_CONTENTS \ #define REG_CLASS_CONTENTS \
{ {0}, /* No regs */ \ { {0}, /* No regs */ \
{0x6ff}, /* GENERAL_REGS */ \ {0x6ff}, /* GENERAL_REGS */ \
{0x100}, /* MAC_REGS */ \ {0x100}, /* MAC_REGS */ \
{0x7ff}, /* ALL_REGS */ \ {0x7ff}, /* ALL_REGS */ \
} }
...@@ -686,14 +686,14 @@ struct cum_arg ...@@ -686,14 +686,14 @@ struct cum_arg
H8/300 H8/300
vvvv context vvvv context
1 0000 7900xxxx mov.w #0x1234,r3 1 0000 7900xxxx mov.w #0x1234,r3
2 0004 5A00xxxx jmp @0x1234 2 0004 5A00xxxx jmp @0x1234
^^^^ function ^^^^ function
H8/300H H8/300H
vvvvvvvv context vvvvvvvv context
2 0000 7A00xxxxxxxx mov.l #0x12345678,er3 2 0000 7A00xxxxxxxx mov.l #0x12345678,er3
3 0006 5Axxxxxx jmp @0x123456 3 0006 5Axxxxxx jmp @0x123456
^^^^^^ function ^^^^^^ function
*/ */
......
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
;; none - insn does not affect cc ;; none - insn does not affect cc
;; none_0hit - insn does not affect cc but it does modify operand 0 ;; none_0hit - insn does not affect cc but it does modify operand 0
;; This attribute is used to keep track of when operand 0 changes. ;; This attribute is used to keep track of when operand 0 changes.
;; See the description of NOTICE_UPDATE_CC for more info. ;; See the description of NOTICE_UPDATE_CC for more info.
;; set_znv - insn sets z,n,v to usable values (like a tst insn); c is unknown. ;; set_znv - insn sets z,n,v to usable values (like a tst insn); c is unknown.
;; set_zn - insn sets z,n to usable values; v,c are unknown. ;; set_zn - insn sets z,n to usable values; v,c are unknown.
;; compare - compare instruction ;; compare - compare instruction
......
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