mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-31 05:44:41 +08:00
Add '+' and '-' as valid symbol characters for PPC port.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-04-24 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* config/tc-ppc.c (ppc_symbol_chars): Define.
|
||||||
|
* config/tc-ppc.h (tc_symbol_chars): Define.
|
||||||
|
|
||||||
2003-04-23 J"orn Rennecke <joern.rennecke@superh.com>
|
2003-04-23 J"orn Rennecke <joern.rennecke@superh.com>
|
||||||
|
|
||||||
* config/tc-sh.c: Amend comment to refer to SuperH.
|
* config/tc-sh.c: Amend comment to refer to SuperH.
|
||||||
|
@ -182,6 +182,10 @@ const char EXP_CHARS[] = "eE";
|
|||||||
/* Characters which mean that a number is a floating point constant,
|
/* Characters which mean that a number is a floating point constant,
|
||||||
as in 0d1.0. */
|
as in 0d1.0. */
|
||||||
const char FLT_CHARS[] = "dD";
|
const char FLT_CHARS[] = "dD";
|
||||||
|
|
||||||
|
/* '+' and '-' can be used as postfix predicate predictors for conditional
|
||||||
|
branches. So they need to be accepted as symbol characters. */
|
||||||
|
const char ppc_symbol_chars[] = "+-";
|
||||||
|
|
||||||
/* The target specific pseudo-ops which we support. */
|
/* The target specific pseudo-ops which we support. */
|
||||||
|
|
||||||
|
@ -206,6 +206,9 @@ do { \
|
|||||||
|
|
||||||
#endif /* OBJ_XCOFF */
|
#endif /* OBJ_XCOFF */
|
||||||
|
|
||||||
|
extern const char ppc_symbol_chars[];
|
||||||
|
#define tc_symbol_chars ppc_symbol_chars
|
||||||
|
|
||||||
#ifdef OBJ_ELF
|
#ifdef OBJ_ELF
|
||||||
|
|
||||||
/* Support for SHF_EXCLUDE and SHT_ORDERED */
|
/* Support for SHF_EXCLUDE and SHT_ORDERED */
|
||||||
|
Reference in New Issue
Block a user