diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-11 11:58:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-11 11:58:39 +0000 |
commit | ca9d6ccabc59098185b3f8ac957159878a996d61 (patch) | |
tree | 0e0cc55869282da5d01d565d43b964556d11ce5b | |
parent | 6bd883297ea46e7731f893dc0e75f985335163d7 (diff) | |
download | gcc-ca9d6ccabc59098185b3f8ac957159878a996d61.zip gcc-ca9d6ccabc59098185b3f8ac957159878a996d61.tar.gz gcc-ca9d6ccabc59098185b3f8ac957159878a996d61.tar.bz2 |
h8300.c (final_prescan_insn): Don't dump rtl.
* config/h8300/h8300.c (final_prescan_insn): Don't dump rtl.
* config/h8300/h8300.h (MASK_RTL_DUMP): Remove.
(TARGET_RTL_DUMP): Likewise.
(TARGET_SWITHCES): Remove -mrtl-dump.
From-SVN: r67758
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.c | 7 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 6 |
3 files changed, 7 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed90861..1575492 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2003-06-11 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.c (final_prescan_insn): Don't dump rtl. + * config/h8300/h8300.h (MASK_RTL_DUMP): Remove. + (TARGET_RTL_DUMP): Likewise. + (TARGET_SWITHCES): Remove -mrtl-dump. + 2003-06-10 Richard Henderson <rth@redhat.com> * optabs.c (gen_cond_trap): Fix prepare_operand typo. diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index 76779e2..7e697f4 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -1650,13 +1650,6 @@ final_prescan_insn (insn, operand, num_operands) const int uid = INSN_UID (insn); - if (TARGET_RTL_DUMP) - { - fprintf (asm_out_file, "\n****************"); - print_rtl (asm_out_file, PATTERN (insn)); - fprintf (asm_out_file, "\n"); - } - if (TARGET_ADDRESSES) { fprintf (asm_out_file, "; 0x%x %d\n", INSN_ADDRESSES (uid), diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 82b4d76..f57c0a1 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -101,7 +101,6 @@ extern int target_flags; #define MASK_SLOWBYTE 0x00000100 #define MASK_NORMAL_MODE 0x00000200 #define MASK_RELAX 0x00000400 -#define MASK_RTL_DUMP 0x00000800 #define MASK_H8300H 0x00001000 #define MASK_ALIGN_300 0x00002000 @@ -120,10 +119,6 @@ extern int target_flags; /* Pretend byte accesses are slow. */ #define TARGET_SLOWBYTE (target_flags & MASK_SLOWBYTE) -/* Dump each assembler insn's rtl into the output file. - This is for debugging the compiler only. */ -#define TARGET_RTL_DUMP (target_flags & MASK_RTL_DUMP) - /* Select between the H8/300 and H8/300H CPUs. */ #define TARGET_H8300 (! TARGET_H8300H && ! TARGET_H8300S) #define TARGET_H8300H (target_flags & MASK_H8300H) @@ -160,7 +155,6 @@ extern int target_flags; {"slowbyte", MASK_SLOWBYTE, \ N_("Consider access to byte sized memory slow")}, \ {"relax", MASK_RELAX, N_("Enable linker relaxing")}, \ - {"rtl-dump", MASK_RTL_DUMP, NULL}, \ {"h", MASK_H8300H, N_("Generate H8/300H code")}, \ {"n", MASK_NORMAL_MODE, N_("Enable the normal mode")}, \ {"no-h", -MASK_H8300H, N_("Do not generate H8/300H code")}, \ |