From mboxrd@z Thu Jan 1 00:00:00 1970 From: Doug Evans To: gas2@canuck.cygnus.com Subject: i386-dis.c OP_OFF patch Date: Mon, 03 Jun 1996 16:27:00 -0000 Message-id: <199606032327.QAA08613@canuck.cygnus.com.> X-SW-Source: 1996/msg00039.html Objdump is incorrectly disassembling this insn: mov %fs:0,%eax `%fs:' is not printed. I don't know the 386 well enough, but does this look right? Mon Jun 3 16:17:25 1996 Doug Evans * i386-dis.c (OP_OFF): Call append_prefix. Index: i386-dis.c =================================================================== RCS file: /cvs/cvsfiles/devo/opcodes/i386-dis.c,v retrieving revision 1.19 diff -c -p -r1.19 i386-dis.c *** i386-dis.c 1996/02/20 16:08:02 1.19 --- i386-dis.c 1996/06/03 23:14:13 *************** OP_OFF (bytemode) *** 1939,1945 **** int bytemode; { int off; ! if (aflag) off = get32 (); else --- 1939,1947 ---- int bytemode; { int off; ! ! append_prefix (); ! if (aflag) off = get32 (); else