2009-09-15 H.J. Lu <hongjiu.lu@intel.com>
* i386-dis.c (OP_E_memory): Don't print '-' in Intel mode if disp == -disp.
This commit is contained in:
parent
9de868bf63
commit
0520304376
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2009-09-15 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* i386-dis.c (OP_E_memory): Don't print '-' in Intel mode if
|
||||||
|
disp == -disp.
|
||||||
|
|
||||||
2009-09-14 Nick Clifton <nickc@redhat.com>
|
2009-09-14 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* po/nl.po: Updated Dutch translation.
|
* po/nl.po: Updated Dutch translation.
|
||||||
|
|
|
@ -11107,7 +11107,7 @@ OP_E_memory (int bytemode, int sizeflag)
|
||||||
*obufp++ = '+';
|
*obufp++ = '+';
|
||||||
*obufp = '\0';
|
*obufp = '\0';
|
||||||
}
|
}
|
||||||
else if (modrm.mod != 1)
|
else if (modrm.mod != 1 && disp != -disp)
|
||||||
{
|
{
|
||||||
*obufp++ = '-';
|
*obufp++ = '-';
|
||||||
*obufp = '\0';
|
*obufp = '\0';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue