From: Alan Modra Date: Fri, 22 Sep 2006 13:54:06 +0000 (+0000) Subject: * config/tc-ppc.c (ppc_symbol_chars): Remove '+' and '-'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5e02f92ecddc25fed29672c2002645eecfe59139;p=binutils-gdb.git * config/tc-ppc.c (ppc_symbol_chars): Remove '+' and '-'. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index dfb5fdc12b0..9fe98d45f2e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2006-09-22 Alan Modra + + * config/tc-ppc.c (ppc_symbol_chars): Remove '+' and '-'. + 2006-09-22 Alan Modra * as.h (as_perror): Delete declaration. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 35e30b08341..1d655ca123c 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -182,11 +182,9 @@ const char EXP_CHARS[] = "eE"; as in 0d1.0. */ 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. - Also, anything that can start an operand needs to be mentioned here, +/* Anything that can start an operand needs to be mentioned here, to stop the input scrubber eating whitespace. */ -const char ppc_symbol_chars[] = "+-%["; +const char ppc_symbol_chars[] = "%["; /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */ int ppc_cie_data_alignment;