mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-11 18:06:03 +08:00
gas/testsuite/
2005-07-18 H.J. Lu <hongjiu.lu@intel.com> * gas/i386/i386.exp: Add suffix. * gas/i386/suffix.d: New file. * gas/i386/suffix.s: Likewise. opcodes/ 2005-07-18 H.J. Lu <hongjiu.lu@intel.com> * i386-dis.c (PNI_Fixup): Update comment. (VMX_Fixup): Properly handle the suffix check.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2005-07-18 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* i386-dis.c (PNI_Fixup): Update comment.
|
||||
(VMX_Fixup): Properly handle the suffix check.
|
||||
|
||||
2005-07-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
* hppa-dis.c (print_insn_hppa): Add space after 'w' in wide-mode
|
||||
|
@ -4419,7 +4419,7 @@ PNI_Fixup (int extrachar ATTRIBUTE_UNUSED, int sizeflag)
|
||||
/* Override "sidt". */
|
||||
char *p = obuf + strlen (obuf) - 4;
|
||||
|
||||
/* We might have a suffix. */
|
||||
/* We might have a suffix when disassembling with -Msuffix. */
|
||||
if (*p == 'i')
|
||||
--p;
|
||||
|
||||
@ -4617,8 +4617,8 @@ VMX_Fixup (int extrachar ATTRIBUTE_UNUSED, int sizeflag)
|
||||
/* Override "sgdt". */
|
||||
char *p = obuf + strlen (obuf) - 4;
|
||||
|
||||
/* We might have a suffix. */
|
||||
if (*p == 'i')
|
||||
/* We might have a suffix when disassembling with -Msuffix. */
|
||||
if (*p == 'g')
|
||||
--p;
|
||||
|
||||
switch (rm)
|
||||
|
Reference in New Issue
Block a user