mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-27 10:23:55 +08:00
* $literal support
2000-06-23 Frank Ch. Eigler <fche@redhat.com> * expr.c (operand): Permit $hex literals if LITERAL_PREFIXDOLLAR_HEX is defined.
This commit is contained in:
parent
f7c8887211
commit
ed6d6fd3c4
@ -1,3 +1,8 @@
|
||||
2000-06-23 Frank Ch. Eigler <fche@redhat.com>
|
||||
|
||||
* expr.c (operand): Permit $hex literals if LITERAL_PREFIXDOLLAR_HEX
|
||||
is defined.
|
||||
|
||||
2000-06-23 matthew green <mrg@redhat.com>
|
||||
|
||||
* expr.c (operand): Do not as_bad() if RELAX_PAREN_GROUPING is
|
||||
|
@ -820,6 +820,12 @@ operand (expressionP)
|
||||
expressionP);
|
||||
break;
|
||||
|
||||
#ifdef LITERAL_PREFIXDOLLAR_HEX
|
||||
case '$':
|
||||
integer_constant (16, expressionP);
|
||||
break;
|
||||
#endif
|
||||
|
||||
case '0':
|
||||
/* non-decimal radix */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user