h8300.c (final_prescan_insn): Don't dump rtl.
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 11 Jun 2003 11:58:39 +0000 (11:58 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 11 Jun 2003 11:58:39 +0000 (11:58 +0000)
* 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

gcc/ChangeLog
gcc/config/h8300/h8300.c
gcc/config/h8300/h8300.h

index ed908616c2183b682d1313840f6e9199a62ae371..1575492b6a31c814e140037d4fe09e557ec76da1 100644 (file)
@@ -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.
index 76779e2bb77a4d4b910c33496a6d90e3647ee59b..7e697f4d76355ea519e1f724eae6c9ec7b8cca80 100644 (file)
@@ -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),
index 82b4d769d660c4f7f1fc4973d9e7c0325a3fb369..f57c0a1fb66b49a7e92cc507a9da4d241b4124b4 100644 (file)
@@ -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")},  \