aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2004-01-18 23:12:47 +0000
committerAlan Modra <amodra@gmail.com>2004-01-18 23:12:47 +0000
commita02a862a31951cce3a13b7c3090e34c8c59adcd6 (patch)
treee4aef40f0974e328c5ced6655b49cf88d7425c88 /opcodes
parent5421d6bee13deaddf29e0c2b2a6ff6bc81e744b2 (diff)
downloadfsf-binutils-gdb-a02a862a31951cce3a13b7c3090e34c8c59adcd6.zip
fsf-binutils-gdb-a02a862a31951cce3a13b7c3090e34c8c59adcd6.tar.gz
fsf-binutils-gdb-a02a862a31951cce3a13b7c3090e34c8c59adcd6.tar.bz2
* i386-dis.c (OP_E): Print scale factor on intel mode sib when not
1. Don't print scale factor on AT&T mode when index missing.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/i386-dis.c6
2 files changed, 6 insertions, 5 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index f099f04..da28aff 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-19 Alan Modra <amodra@bigpond.net.au>
+
+ * i386-dis.c (OP_E): Print scale factor on intel mode sib when not
+ 1. Don't print scale factor on AT&T mode when index missing.
+
2004-01-16 Alexandre Oliva <aoliva@redhat.com>
* m10300-opc.c (mov): 8- and 24-bit immediates are zero-extended
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c
index 0ef57ef..f9a0a9b 100644
--- a/opcodes/i386-dis.c
+++ b/opcodes/i386-dis.c
@@ -3173,11 +3173,7 @@ OP_E (int bytemode, int sizeflag)
? names64[index] : names32[index]);
oappend (scratchbuf);
}
- if (!intel_syntax
- || (intel_syntax
- && bytemode != b_mode
- && bytemode != w_mode
- && bytemode != v_mode))
+ if (scale != 0 || (!intel_syntax && index != 4))
{
*obufp++ = scale_char;
*obufp = '\0';