diff options
author | Dave Anglin <dave.anglin@nrc.ca> | 2003-05-21 19:40:54 +0000 |
---|---|---|
committer | Dave Anglin <dave.anglin@nrc.ca> | 2003-05-21 19:40:54 +0000 |
commit | 85c77c383f623ece2c4cbb485bf74848e766edf3 (patch) | |
tree | a7821fcaf7aa3315fc05152160a4a60ab9af183d /gas/config | |
parent | cea3d58d02df3cf065317844e5e332d10e216ab2 (diff) | |
download | gdb-85c77c383f623ece2c4cbb485bf74848e766edf3.zip gdb-85c77c383f623ece2c4cbb485bf74848e766edf3.tar.gz gdb-85c77c383f623ece2c4cbb485bf74848e766edf3.tar.bz2 |
* config/tc-hppa.c (hppa_symbol_chars): Remove `,' and `!'.
* testsuite/gas/hppa/parse/parse.exp: Add "space.s".
* testsuite/gas/hppa/parse/space.s: New file to test spaces.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-hppa.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 3212ead..39da02e 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -622,8 +622,10 @@ static struct call_desc last_call_desc; /* handle of the OPCODE hash table */ static struct hash_control *op_hash = NULL; -/* Those characters can be suffixes of opcode names. */ -const char hppa_symbol_chars[] = ",*!?=<>"; +/* These characters can be suffixes of opcode names and they may be + followed by meaningful whitespace. We don't include `,' and `!' + as they never appear followed by meaningful whitespace. */ +const char hppa_symbol_chars[] = "*?=<>"; /* Table of pseudo ops for the PA. FIXME -- how many of these are now redundant with the overall GAS and the object file |