]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
avr.c (final_prescan_insn): Remove support for -mrtl.
authorKazu Hirata <kazu@cs.umass.edu>
Thu, 26 Jun 2003 13:11:09 +0000 (13:11 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Thu, 26 Jun 2003 13:11:09 +0000 (13:11 +0000)
* config/avr/avr.c (final_prescan_insn): Remove support for
-mrtl.
* config/avr/avr.h (MASK_RTL_DUMP): Remove.
(TARGET_RTL_DUMP): Likewise.
(TARGET_SWITCHES): Remove -mrtl.

From-SVN: r68530

gcc/ChangeLog
gcc/config/avr/avr.c
gcc/config/avr/avr.h

index 9844d81a60d867641b747e6d6e44ad693454e789..0a91bdae9c00c48660e4e55a4cd533c736d9027c 100644 (file)
@@ -1,3 +1,11 @@
+2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/avr/avr.c (final_prescan_insn): Remove support for
+       -mrtl.
+       * config/avr/avr.h (MASK_RTL_DUMP): Remove.
+       (TARGET_RTL_DUMP): Likewise.
+       (TARGET_SWITCHES): Remove -mrtl.
+
 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/h8300/h8300-protos.h: Change emit_a_rotate to
index d6fcd4770f527f3cc9e2682f0f07d923ec3c741d..c8dba17e4ef087c6ef02760a3dcf2616be44005d 100644 (file)
@@ -1453,13 +1453,6 @@ final_prescan_insn (insn, operand, num_operands)
               rtx_cost (PATTERN (insn), INSN));
     }
   last_insn_address = INSN_ADDRESSES (uid);
-
-  if (TARGET_RTL_DUMP)
-    {
-      fprintf (asm_out_file, "/*****************\n");
-      print_rtl_single (asm_out_file, insn);
-      fprintf (asm_out_file, "*****************/\n");
-    }
 }
 
 /* Return 0 if undefined, 1 if always true or always false.  */
index 8255e199de82658e9de792d68835ec06a0b65e06..8cfe48c913b8f6a017b9edbc85740b406167da2f 100644 (file)
@@ -44,7 +44,6 @@ Boston, MA 02111-1307, USA.  */
 /* This declaration should be present. */
 extern int target_flags;
 
-#define MASK_RTL_DUMP          0x00000010
 #define MASK_ALL_DEBUG         0x00000FE0
 #define MASK_ORDER_1           0x00001000
 #define MASK_INSN_SIZE_DUMP    0x00002000
@@ -65,11 +64,6 @@ extern int target_flags;
 #define TARGET_TINY_STACK      (target_flags & MASK_TINY_STACK)
 #define TARGET_NO_TABLEJUMP    (target_flags & MASK_NO_TABLEJUMP)
 #define TARGET_SHORT_CALLS     (target_flags & MASK_SHORT_CALLS)
-
-/* Dump each assembler insn's rtl into the output file.
-   This is for debugging the compiler itself.  */
-
-#define TARGET_RTL_DUMP                (target_flags & MASK_RTL_DUMP)
 #define TARGET_ALL_DEBUG       (target_flags & MASK_ALL_DEBUG)
 
 #define TARGET_SWITCHES {                                              \
@@ -86,7 +80,6 @@ extern int target_flags;
     N_("Do not generate tablejump insns") },                           \
   { "short-calls", MASK_SHORT_CALLS,                                   \
     N_("Use rjmp/rcall (limited range) on >8K devices") },             \
-  { "rtl", MASK_RTL_DUMP, NULL },                                      \
   { "size", MASK_INSN_SIZE_DUMP,                                       \
     N_("Output instruction sizes to the asm file") },                  \
   { "deb", MASK_ALL_DEBUG, NULL },                                     \