diff options
author | Alan Modra <amodra@gmail.com> | 2002-05-01 00:53:55 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-05-01 00:53:55 +0000 |
commit | 200dbde8db4bc75e162b6a641b70d64541f468d4 (patch) | |
tree | aae1dfdc2f9363d918923452c6b695c0c4a13572 /gas | |
parent | 3f3cdb030204d24387194ff4e77438cd7141dceb (diff) | |
download | gdb-200dbde8db4bc75e162b6a641b70d64541f468d4.zip gdb-200dbde8db4bc75e162b6a641b70d64541f468d4.tar.gz gdb-200dbde8db4bc75e162b6a641b70d64541f468d4.tar.bz2 |
* config/tc-i386.c (extra_symbol_chars): Add '[' to the list.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b692ca5..76fe139 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2002-05-01 Andrew Macleod <amacleod@cygnus.com> + + * config/tc-i386.c (extra_symbol_chars): Add '[' to the list. + 2002-05-01 Alan Modra <amodra@bigpond.net.au> * write.c (cvt_frag_to_fill): Set fr_offset to zero on .org diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 35bdb94..bb1d512 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -182,9 +182,9 @@ typedef struct _i386_insn i386_insn; /* List of chars besides those in app.c:symbol_chars that can start an operand. Used to prevent the scrubber eating vital white-space. */ #ifdef LEX_AT -const char extra_symbol_chars[] = "*%-(@"; +const char extra_symbol_chars[] = "*%-(@["; #else -const char extra_symbol_chars[] = "*%-("; +const char extra_symbol_chars[] = "*%-(["; #endif #if (defined (TE_I386AIX) \ |