diff options
author | Doug Evans <xdje42@gmail.com> | 2014-11-02 21:34:59 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-11-02 21:34:59 -0800 |
commit | e82149ff2aa7f91090a440daa882b8c0c37840a9 (patch) | |
tree | ecb117da37e9e6d7ce4bb50e5bc2a8ff111efb6c | |
parent | d7ee84f11785f239c40378484f48dc0a17cbd14f (diff) | |
download | gdb-e82149ff2aa7f91090a440daa882b8c0c37840a9.zip gdb-e82149ff2aa7f91090a440daa882b8c0c37840a9.tar.gz gdb-e82149ff2aa7f91090a440daa882b8c0c37840a9.tar.bz2 |
mdebugread.c (parse_procedure): Delete unnecessary forward decl.
gdb/ChangeLog:
* mdebugread.c (parse_procedure): Delete unnecessary forward decl.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/mdebugread.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 25895c1..f09715c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2014-11-02 Doug Evans <xdje42@gmail.com> + * mdebugread.c (parse_procedure): Delete unnecessary forward decl. + +2014-11-02 Doug Evans <xdje42@gmail.com> + * xcoffread.c (process_linenos): Delete unnecessary zeroing of main_subfile before returning. diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index eba5298..1d7c6ae 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -1919,8 +1919,6 @@ upgrade_type (int fd, struct type **tpp, int tq, union aux_ext *ax, int bigend, to look for the function which contains the MDEBUG_EFI_SYMBOL_NAME symbol in question, or NULL to use top_stack->cur_block. */ -static void parse_procedure (PDR *, struct symtab *, struct partial_symtab *); - static void parse_procedure (PDR *pr, struct symtab *search_symtab, struct partial_symtab *pst) |