* new parsing option
2000-07-17 Frank Ch. Eigler <fche@redhat.com> * expr.c (operand): Permit %bin literals if LITERAL_PREFIXPERCENT_BIN is defined.
This commit is contained in:
parent
2ed78d1b89
commit
977e771a09
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-07-17 Frank Ch. Eigler <fche@redhat.com>
|
||||
|
||||
* expr.c (operand): Permit %bin literals if LITERAL_PREFIXPERCENT_BIN
|
||||
is defined.
|
||||
|
||||
2000-07-15 Ian Lance Taylor <ian@zembu.com>
|
||||
|
||||
* doc/c-mips.texi (MIPS Opts): Remove erroneous space after
|
||||
|
|
|
@ -826,6 +826,12 @@ operand (expressionP)
|
|||
break;
|
||||
#endif
|
||||
|
||||
#ifdef LITERAL_PREFIXPERCENT_BIN
|
||||
case '%':
|
||||
integer_constant (2, expressionP);
|
||||
break;
|
||||
#endif
|
||||
|
||||
case '0':
|
||||
/* non-decimal radix */
|
||||
|
||||
|
|
Loading…
Reference in a new issue