diff options
author | Andreas Jaeger <aj@suse.de> | 2001-11-14 12:01:12 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-11-14 12:01:12 +0000 |
commit | fa405d97a1ac276355958ef76f5a90c00e0ed91f (patch) | |
tree | 1723d71ab89606bee56cdf6fc76c0d36fed3ad68 /opcodes/i386-dis.c | |
parent | b89e9eae555ae991adf97ae42953111be8818994 (diff) | |
download | gdb-fa405d97a1ac276355958ef76f5a90c00e0ed91f.zip gdb-fa405d97a1ac276355958ef76f5a90c00e0ed91f.tar.gz gdb-fa405d97a1ac276355958ef76f5a90c00e0ed91f.tar.bz2 |
* i386-dis.c (print_insn): Use x86-64 as option.
Diffstat (limited to 'opcodes/i386-dis.c')
-rw-r--r-- | opcodes/i386-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |