mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
2001-08-14 Jeff Johnston <jjohnstn@redhat.com>
* expr.c (operand)[LITERAL_PREFIXDOLLAR_HEX]: Treat $L as a label, not a hex constant. This patch was approved by Nick Clifton.
This commit is contained in:
parent
8aefe91ac7
commit
c68012fb32
@ -1,3 +1,8 @@
|
||||
2001-08-14 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* expr.c (operand)[LITERAL_PREFIXDOLLAR_HEX]: Treat $L as
|
||||
a label, not a hex constant.
|
||||
|
||||
2001-08-13 Nick Clifton <nickc@cambridge.redhat.com>
|
||||
|
||||
* config/tc-v850.h: Add missing prototypes.
|
||||
|
@ -811,6 +811,9 @@ operand (expressionP)
|
||||
|
||||
#ifdef LITERAL_PREFIXDOLLAR_HEX
|
||||
case '$':
|
||||
/* $L is the start of a local label, not a hex constant. */
|
||||
if (* input_line_pointer == 'L')
|
||||
goto isname;
|
||||
integer_constant (16, expressionP);
|
||||
break;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user