* $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:
Frank Ch. Eigler 2000-06-23 10:51:28 +00:00
parent f7c8887211
commit ed6d6fd3c4
2 changed files with 11 additions and 0 deletions

View File

@ -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

View File

@ -820,6 +820,12 @@ operand (expressionP)
expressionP);
break;
#ifdef LITERAL_PREFIXDOLLAR_HEX
case '$':
integer_constant (16, expressionP);
break;
#endif
case '0':
/* non-decimal radix */