diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-07-28 17:26:27 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-07-28 17:26:27 +0000 |
commit | 3b64bf9877bc5cfacd10117a1a0656c464545995 (patch) | |
tree | 8083bfb73b0053da51316ca45794ef24073e0671 /gdb/mips-tdep.c | |
parent | 54a5b07d668e9320efb1ada27582f859ccfaaaf3 (diff) | |
download | gdb-3b64bf9877bc5cfacd10117a1a0656c464545995.zip gdb-3b64bf9877bc5cfacd10117a1a0656c464545995.tar.gz gdb-3b64bf9877bc5cfacd10117a1a0656c464545995.tar.bz2 |
2004-07-28 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_zinteger_cmd)
(add_setshow_cmd, add_setshow_auto_boolean_cmd)
(add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
print parameters. Make string parameters constant.
* command.h: Update. Update copyright.
* remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
* observer.c (_initialize_observer): Ditto.
* frame.c (_initialize_frame): Ditto.
* complaints.c (_initialize_complaints): Ditto.
* maint.c (_initialize_maint_cmds): Ditto.
* target.c (initialize_targets): Ditto.
* cli/cli-logging.c (_initialize_cli_logging): Ditto.
* infcall.c (_initialize_infcall): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* m32r-rom.c (_initialize_m32r_rom): Ditto.
* remote-rdi.c (_initialize_remote_rdi): Ditto.
* d10v-tdep.c (_initialize_d10v_tdep): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Ditto.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 8ed63d6..14697d4 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -6186,24 +6186,24 @@ search. The only need to set it is when debugging a stripped executable.", &set /* Allow the user to control whether the upper bits of 64-bit addresses should be zeroed. */ add_setshow_auto_boolean_cmd ("mask-address", no_class, &mask_address_var, "\ -Set zeroing of upper 32 bits of 64-bit addresses.\n\ +Set zeroing of upper 32 bits of 64-bit addresses.", "\ +Show zeroing of upper 32 bits of 64-bit addresses.", "\ Use \"on\" to enable the masking, \"off\" to disable it and \"auto\" to \n\ allow GDB to determine the correct value.\n", "\ -Show zeroing of upper 32 bits of 64-bit addresses.", +Zerroing of upper 32 bits of 64-bit address is %s.", NULL, show_mask_address, &setmipscmdlist, &showmipscmdlist); /* Allow the user to control the size of 32 bit registers within the raw remote packet. */ add_setshow_cmd ("remote-mips64-transfers-32bit-regs", class_obscure, var_boolean, &mips64_transfers_32bit_regs_p, "\ -Set compatibility with 64-bit MIPS targets that transfer 32-bit quantities.\n\ +Set compatibility with 64-bit MIPS target that transfers 32-bit quantities.", "\ +Show compatibility with 64-bit MIPS target that transfers 32-bit quantities.", "\ Use \"on\" to enable backward compatibility with older MIPS 64 GDB+target\n\ that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\ 64 bits for others. Use \"off\" to disable compatibility mode", "\ -Show compatibility with 64-bit MIPS targets that transfer 32-bit quantities.\n\ -Use \"on\" to enable backward compatibility with older MIPS 64 GDB+target\n\ -that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\ -64 bits for others. Use \"off\" to disable compatibility mode", set_mips64_transfers_32bit_regs, NULL, &setlist, &showlist); +Compatibility with 64-bit MIPS target that transfers 32-bit quantities is %s.", + set_mips64_transfers_32bit_regs, NULL, &setlist, &showlist); /* Debug this files internals. */ deprecated_add_show_from_set |