From: Bernardo Innocenti Date: Sun, 15 Feb 2004 17:46:02 +0000 (+0100) Subject: m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Restore support for '%#'. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac5f996102d7f40479baa2a423397ed571531924;p=platform%2Fupstream%2Fgcc.git m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Restore support for '%#'. * config/m68k/m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Restore support for '%#'. From-SVN: r77860 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6117cd1..ca477f6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-02-15 Bernardo Innocenti + + * config/m68k/m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Restore support for + '%#'. + 2004-02-15 Kazu Hirata * config/ia64/ia64.c, config/mips/mips.c, diff --git a/gcc/config/m68k/m68k.h b/gcc/config/m68k/m68k.h index f4d8339..6f05bec 100644 --- a/gcc/config/m68k/m68k.h +++ b/gcc/config/m68k/m68k.h @@ -1629,6 +1629,8 @@ do { if (cc_prev_status.flags & CC_IN_68881) \ sp@+, (sp)+ or (%sp)+ depending on the style of syntax. '@' for a reference to the top word on the stack: sp@, (sp) or (%sp) depending on the style of syntax. + '#' for an immediate operand prefix (# in MIT and Motorola syntax + but & in SGS syntax). '!' for the fpcr register (used in some float-to-fixed conversions). '$' for the letter `s' in an op code, but only on the 68040. '&' for the letter `d' in an op code, but only on the 68040. @@ -1643,8 +1645,9 @@ do { if (cc_prev_status.flags & CC_IN_68881) \ or print pair of registers as rx:ry. */ #define PRINT_OPERAND_PUNCT_VALID_P(CODE) \ - ((CODE) == '.' || (CODE) == '-' || (CODE) == '+' || (CODE) == '@' \ - || (CODE) == '!' || (CODE) == '$' || (CODE) == '&' || (CODE) == '/') + ((CODE) == '.' || (CODE) == '#' || (CODE) == '-' \ + || (CODE) == '+' || (CODE) == '@' || (CODE) == '!' \ + || (CODE) == '$' || (CODE) == '&' || (CODE) == '/') /* A C compound statement to output to stdio stream STREAM the assembler syntax for an instruction operand X. X is an RTL