aboutsummaryrefslogtreecommitdiff
path: root/gdb/i386-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-11-08 18:23:43 +0000
committerAndrew Cagney <cagney@redhat.com>2001-11-08 18:23:43 +0000
commit8ea43c6d5a6fdc04c59b97817f4041bdfe2d2219 (patch)
tree63100038a2335aed2ef85ed841a0e7fe059c3c57 /gdb/i386-tdep.c
parent274d631f2117c82eac1aeabb7375b68cc0c9ca85 (diff)
downloadgdb-8ea43c6d5a6fdc04c59b97817f4041bdfe2d2219.zip
gdb-8ea43c6d5a6fdc04c59b97817f4041bdfe2d2219.tar.gz
gdb-8ea43c6d5a6fdc04c59b97817f4041bdfe2d2219.tar.bz2
Don't update ``set architecture'' when ``set disassembly-flavor[sic]''
Diffstat (limited to 'gdb/i386-tdep.c')
-rw-r--r--gdb/i386-tdep.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c
index 15ff15f..276c018 100644
--- a/gdb/i386-tdep.c
+++ b/gdb/i386-tdep.c
@@ -188,13 +188,6 @@ static const char *valid_flavors[] =
};
static const char *disassembly_flavor = att_flavor;
-/* This is used to keep the bfd arch_info in sync with the disassembly
- flavor. */
-static void set_disassembly_flavor_sfunc (char *, int,
- struct cmd_list_element *);
-static void set_disassembly_flavor (void);
-
-
/* Stdio style buffering was used to minimize calls to ptrace, but
this buffering did not take into account that the code section
being accessed may not be an even number of buffers long (even if
@@ -1200,26 +1193,6 @@ gdb_print_insn_i386 (bfd_vma memaddr, disassemble_info *info)
internal_error (__FILE__, __LINE__, "failed internal consistency check");
}
-/* If the disassembly mode is intel, we have to also switch the bfd
- mach_type. This function is run in the set disassembly_flavor
- command, and does that. */
-
-static void
-set_disassembly_flavor_sfunc (char *args, int from_tty,
- struct cmd_list_element *c)
-{
- set_disassembly_flavor ();
-}
-
-static void
-set_disassembly_flavor (void)
-{
- if (disassembly_flavor == att_flavor)
- set_architecture_from_arch_mach (bfd_arch_i386, bfd_mach_i386_i386);
- else if (disassembly_flavor == intel_flavor)
- set_architecture_from_arch_mach (bfd_arch_i386,
- bfd_mach_i386_i386_intel_syntax);
-}
/* Provide a prototype to silence -Wmissing-prototypes. */
@@ -1255,11 +1228,6 @@ _initialize_i386_tdep (void)
Set the disassembly flavor, the valid values are \"att\" and \"intel\", \
and the default value is \"att\".",
&setlist);
- new_cmd->function.sfunc = set_disassembly_flavor_sfunc;
add_show_from_set (new_cmd, &showlist);
}
-
- /* Finally, initialize the disassembly flavor to the default given
- in the disassembly_flavor variable. */
- set_disassembly_flavor ();
}