diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-16 18:20:10 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-16 18:20:10 +0000 |
commit | a4f419971fc5444ee68a8e318a81464c8d8e51c3 (patch) | |
tree | 34f9cf0a54afcce60bc21785025bcfc86636dc9a | |
parent | 83d37ec863028d177ac35e57a113caa65ec80d59 (diff) | |
download | gdb-a4f419971fc5444ee68a8e318a81464c8d8e51c3.zip gdb-a4f419971fc5444ee68a8e318a81464c8d8e51c3.tar.gz gdb-a4f419971fc5444ee68a8e318a81464c8d8e51c3.tar.bz2 |
Add prototypes for ARM register name functions.
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/dis-asm.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 3b949c0..13faae4 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2000-02-16 Nick Clifton <nickc@cygnus.com> + + * dis-asm.h: Add prototypes for ARM register name functions. + Wed Feb 9 18:45:49 2000 Andrew Cagney <cagney@b1.cygnus.com> * wait.h: Delete. No longer used by GDB. diff --git a/include/dis-asm.h b/include/dis-asm.h index 8dc9b71..ee86961 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -196,6 +196,9 @@ extern int print_insn_pj PARAMS ((bfd_vma, disassemble_info*)); extern void print_arm_disassembler_options PARAMS ((FILE *)); extern void parse_arm_disassembler_option PARAMS ((char *)); +extern int get_arm_regname_num_options PARAMS ((void)); +extern int set_arm_regname_option PARAMS ((int)); +extern int get_arm_regnames PARAMS ((int, const char **, const char **, const char ***)); /* Fetch the disassembler for a given BFD, if that support is available. */ extern disassembler_ftype disassembler PARAMS ((bfd *)); |