diff options
-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' |