aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/avr
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-06-26 13:11:09 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-06-26 13:11:09 +0000
commit0e8a9ede78e7eb409d40d24bd36db779ed0f9ac1 (patch)
tree90c067d0919aa1b9a56ac927d3b5d4af8fb06cab /gcc/config/avr
parent4c43bcb0e1abcab77882342071cc039183cbeef6 (diff)
downloadgcc-0e8a9ede78e7eb409d40d24bd36db779ed0f9ac1.zip
gcc-0e8a9ede78e7eb409d40d24bd36db779ed0f9ac1.tar.gz
gcc-0e8a9ede78e7eb409d40d24bd36db779ed0f9ac1.tar.bz2
avr.c (final_prescan_insn): Remove support for -mrtl.
* 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
Diffstat (limited to 'gcc/config/avr')
-rw-r--r--gcc/config/avr/avr.c7
-rw-r--r--gcc/config/avr/avr.h7
2 files changed, 0 insertions, 14 deletions
diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c
index d6fcd47..c8dba17 100644
--- a/gcc/config/avr/avr.c
+++ b/gcc/config/avr/avr.c
@@ -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. */
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h
index 8255e19..8cfe48c 100644
--- a/gcc/config/avr/avr.h
+++ b/gcc/config/avr/avr.h
@@ -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 }, \