diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2011-12-15 19:30:08 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2011-12-15 19:30:08 +0000 |
commit | 666b67b1b98d4587c6f687b246109117b1fe5ebc (patch) | |
tree | 1cc265052379354348cff421af470f833a61fe88 /gcc/config/avr/avr.h | |
parent | faf81b1a183e3a29f6360e52b622fe0d5717b09b (diff) | |
download | gcc-666b67b1b98d4587c6f687b246109117b1fe5ebc.zip gcc-666b67b1b98d4587c6f687b246109117b1fe5ebc.tar.gz gcc-666b67b1b98d4587c6f687b246109117b1fe5ebc.tar.bz2 |
avr-protos.h (print_operand): Remove.
* config/avr/avr-protos.h (print_operand): Remove.
(print_operand_address): Remove.
* config/avr/avr.h (PRINT_OPERAND): Remove.
(PRINT_OPERAND_ADDRESS): Remove.
(PRINT_OPERAND_PUNCT_VALID_P): Remove.
* config/avr/avr.c (TARGET_PRINT_OPERAND): New hook define.
(TARGET_PRINT_OPERAND_ADDRESS): New hook define.
(TARGET_PRINT_OPERAND_PUNCT_VALID_P): New hook define.
(print_operand_address): Rename to...
(avr_print_operand_address): ...this and make static.
(print_operand): Rename to...
(avr_print_operand): ...this and make static.
(avr_print_operand_punct_valid_p): New static function.
From-SVN: r182386
Diffstat (limited to 'gcc/config/avr/avr.h')
-rw-r--r-- | gcc/config/avr/avr.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h index 14effd8..33017ba 100644 --- a/gcc/config/avr/avr.h +++ b/gcc/config/avr/avr.h @@ -497,12 +497,6 @@ typedef struct avr_args { #define FINAL_PRESCAN_INSN(insn, operand, nop) final_prescan_insn (insn, operand,nop) -#define PRINT_OPERAND(STREAM, X, CODE) print_operand (STREAM, X, CODE) - -#define PRINT_OPERAND_PUNCT_VALID_P(CODE) ((CODE) == '~' || (CODE) == '!') - -#define PRINT_OPERAND_ADDRESS(STREAM, X) print_operand_address(STREAM, X) - #define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \ { \ gcc_assert (REGNO < 32); \ |