From: Andreas Jaeger Date: Wed, 14 Nov 2001 12:01:12 +0000 (+0000) Subject: * i386-dis.c (print_insn): Use x86-64 as option. X-Git-Tag: cygnus_cvs_20020108_pre~668 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa405d97a1ac276355958ef76f5a90c00e0ed91f;p=external%2Fbinutils.git * i386-dis.c (print_insn): Use x86-64 as option. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 1805306..c1c21f8 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2001-11-14 Andreas Jaeger + + * i386-dis.c (print_insn): Use x86-64 as option. + 2001-11-14 Alan Modra * disassemble.c (disassembler): Call print_insn_i386. @@ -18,7 +22,7 @@ (has_lkaddr): Don't forget about Lmem insns. * tic54x-opc.c: Add emulation trap. Parallel table now uses standard opcode templates. - + 2001-11-13 Zack Weinberg * i386-dis.c (grps): Change "sldt", "str", and "smsw" entries @@ -130,7 +134,7 @@ * openrisc-desc.c: Regenerate. * openrisc-ibld.c: Regenerate. * po/opcodes.pot: Regenerate. - + 2001-10-12 matthew green * ppc-opc.c (insert_de, extract_de, insert_des, extract_des): New @@ -186,7 +190,7 @@ DSP single data transfer instructions. * sh-dis.c (print_insn_shx): Fix decoding of As opcode in DSP - instructions. + instructions. 2001-10-08 Nick Clifton diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 6926dab..7b4b858 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -1903,7 +1903,7 @@ print_insn (pc, info) for (p = info->disassembler_options; p != NULL; ) { - if (strncmp (p, "x86_64", 6) == 0) + if (strncmp (p, "x86-64", 6) == 0) { mode_64bit = 1; priv.orig_sizeflag = AFLAG | DFLAG;