Remove obsolete declaration

Commit c9e0a7e333 ("Remove munmap_listp_free_cleanup") removed
munmap_listp_free, but missed a declaration.  This patch removes that
as well.

gdb/ChangeLog
2020-05-22  Tom Tromey  <tromey@adacore.com>

	* compile/compile-object-load.h (munmap_list_free): Don't
	declare.
This commit is contained in:
Tom Tromey 2020-05-22 13:34:14 -06:00
parent 7c13f4e875
commit 9392ebb3bb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2020-05-22 Tom Tromey <tromey@adacore.com>
* compile/compile-object-load.h (munmap_list_free): Don't
declare.
2020-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
* annotate.c (annotate_source_line): Update return type, add call

View File

@ -80,6 +80,5 @@ struct compile_module
extern struct compile_module *compile_object_load
(const compile_file_names &fnames,
enum compile_i_scope_types scope, void *scope_data);
extern void munmap_list_free (struct munmap_list *head);
#endif /* COMPILE_COMPILE_OBJECT_LOAD_H */