Delete ``info architecture'' command.

This commit is contained in:
Andrew Cagney 2001-05-10 18:36:26 +00:00
parent ee05526729
commit 0a1d979176
2 changed files with 6 additions and 37 deletions

View File

@ -1,3 +1,9 @@
2001-05-10 Andrew Cagney <ac131313@redhat.com>
* arch-utils.c (initialize_current_architecture): Delete obsolete
``info architecture'' command.
(info_architecture): Delete function.
2001-05-10 Andrew Cagney <ac131313@redhat.com>
* TODO (5.1, 5.2): Update.

View File

@ -586,40 +586,6 @@ set_architecture (char *ignore_args, int from_tty, struct cmd_list_element *c)
show_architecture (NULL, from_tty);
}
/* Called if the user enters ``info architecture'' without an argument. */
static void
info_architecture (char *args, int from_tty)
{
printf_filtered ("Available architectures are:\n");
if (GDB_MULTI_ARCH)
{
const char **arches = gdbarch_printable_names ();
const char **arch;
for (arch = arches; *arch != NULL; arch++)
{
printf_filtered (" %s", *arch);
}
xfree (arches);
}
else
{
enum bfd_architecture a;
for (a = bfd_arch_obscure + 1; a < bfd_arch_last; a++)
{
const struct bfd_arch_info *ap;
for (ap = bfd_lookup_arch (a, 0);
ap != NULL;
ap = ap->next)
{
printf_filtered (" %s", ap->printable_name);
ap = ap->next;
}
}
}
printf_filtered ("\n");
}
/* Set the dynamic target-system-dependent parameters (architecture,
byte-order) using information found in the BFD */
@ -759,9 +725,6 @@ initialize_current_architecture (void)
current setting. */
add_cmd ("architecture", class_support, show_architecture,
"Show the current target architecture", &showlist);
c = add_cmd ("architecture", class_support, info_architecture,
"List supported target architectures", &infolist);
deprecate_cmd (c, "set architecture");
}
}