diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-05 15:43:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-05 15:43:50 +0000 |
commit | c307774398037fa8fe46157e610da85e113a93ab (patch) | |
tree | f7a35a91fc48d0ff41913e025208367585d1fa9f /gdb/mips-tdep.c | |
parent | 062159088a93e24ba5351a040f5b90d52457ec4d (diff) | |
download | gdb-c307774398037fa8fe46157e610da85e113a93ab.tar.gz |
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 1fc83867a4c..8d9d855cfe5 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -5188,7 +5188,8 @@ This option can be set to one of:\n\ saved GP register size from information contained in the executable.\n\ (default: auto)", "\ Size of general purpose registers saved on the stack is %s.\n", - NULL, NULL, &setmipscmdlist, &showmipscmdlist); + NULL, NULL, &setmipscmdlist, &showmipscmdlist, + NULL, NULL); /* Allow the user to override the argument stack size. */ add_setshow_enum_cmd ("stack-arg-size", class_obscure, @@ -5201,7 +5202,8 @@ This option can be set to one of:\n\ auto - Allow GDB to determine the correct setting from the current\n\ target and executable (default)", "\ The amount of stack space reserved for each argument is %s.\n", - NULL, NULL, &setmipscmdlist, &showmipscmdlist); + NULL, NULL, &setmipscmdlist, &showmipscmdlist, + NULL, NULL); /* Allow the user to override the ABI. */ c = add_set_enum_cmd |