diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-11-01 18:40:53 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-11-01 18:40:53 +0000 |
commit | 4a146fc23c49f610976a41458061bd8ec1bd62f8 (patch) | |
tree | b43c345e35f71f49e315e0c35254e26e4b4375b0 /gas | |
parent | ec33ab7fc4639788b0b493f38867bcb987b62a82 (diff) | |
download | gdb-4a146fc23c49f610976a41458061bd8ec1bd62f8.zip gdb-4a146fc23c49f610976a41458061bd8ec1bd62f8.tar.gz gdb-4a146fc23c49f610976a41458061bd8ec1bd62f8.tar.bz2 |
2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.h (LONG_DOUBLE_MNEM_SUFFIX): Use a non-ascii
letter.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.h | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 62de5b7..416a38a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2007-11-01 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.h (LONG_DOUBLE_MNEM_SUFFIX): Use a non-ascii + letter. + +2007-11-01 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (process_suffix): Check addrprefixop0 to see if the address size override prefix changes the size of the first operand. diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index 65e300a..bf27842 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -122,8 +122,9 @@ extern const char *i386_comment_chars; #define SHORT_MNEM_SUFFIX 's' #define LONG_MNEM_SUFFIX 'l' #define QWORD_MNEM_SUFFIX 'q' -/* Intel Syntax */ -#define LONG_DOUBLE_MNEM_SUFFIX 'x' +/* Intel Syntax. Use a non-ascii letter since since it never appears + in instructions. */ +#define LONG_DOUBLE_MNEM_SUFFIX '\1' #define END_OF_INSN '\0' |