diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed908616c21..1575492b6a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2003-06-11 Kazu Hirata + + * 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 * optabs.c (gen_cond_trap): Fix prepare_operand typo. diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index 76779e2bb77..7e697f4d763 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 82b4d769d66..f57c0a1fb66 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")}, \