summaryrefslogtreecommitdiff
path: root/gas/expr.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-11-08 15:48:26 +0000
committerNick Clifton <nickc@redhat.com>2005-11-08 15:48:26 +0000
commitada0de7dba3b29fe35ca5f44cd68920d0c7ff25e (patch)
tree29365217604a818a03abec4f141751f8d4c137b3 /gas/expr.c
parentecb5369fbe994b06228f1238b5d93f2fbc9125e5 (diff)
downloadbinutils-redhat-ada0de7dba3b29fe35ca5f44cd68920d0c7ff25e.tar.gz
* expr.c (operand <case '$'>): Use DOLLAR_AMBIGU rather than flag_mri_m68k
as condition for parsing the '$' as a prefix. * as.h (DOLLAR_AMBIGU): Define if needed.
Diffstat (limited to 'gas/expr.c')
-rw-r--r--gas/expr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/expr.c b/gas/expr.c
index a5a77718d5..c601b0af69 100644
--- a/gas/expr.c
+++ b/gas/expr.c
@@ -1095,10 +1095,10 @@ operand (expressionS *expressionP, enum expr_mode mode)
if (! flag_m68k_mri)
goto de_fault;
#endif
- if (flag_m68k_mri && hex_p (*input_line_pointer))
+ if (DOLLAR_AMBIGU && hex_p (*input_line_pointer))
{
- /* In MRI mode, '$' is also used as the prefix for a
- hexadecimal constant. */
+ /* In MRI mode and on Z80, '$' is also used as the prefix
+ for a hexadecimal constant. */
integer_constant (16, expressionP);
break;
}