From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id D6C1F386F432; Fri, 22 May 2020 19:36:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D6C1F386F432 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Remove obsolete declaration X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 7c13f4e875fd5eeb0b7a1c301b4b513051822648 X-Git-Newrev: 9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4 Message-Id: <20200522193627.D6C1F386F432@sourceware.org> Date: Fri, 22 May 2020 19:36:27 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 May 2020 19:36:27 -0000 https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4 commit 9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4 Author: Tom Tromey Date: Fri May 22 13:34:14 2020 -0600 Remove obsolete declaration Commit c9e0a7e3331 ("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 * compile/compile-object-load.h (munmap_list_free): Don't declare. Diff: --- gdb/ChangeLog | 5 +++++ gdb/compile/compile-object-load.h | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 31550d23b14..4662ff34923 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-05-22 Tom Tromey + + * compile/compile-object-load.h (munmap_list_free): Don't + declare. + 2020-05-22 Andrew Burgess * annotate.c (annotate_source_line): Update return type, add call diff --git a/gdb/compile/compile-object-load.h b/gdb/compile/compile-object-load.h index 2e9dd2a67dc..c4adc719141 100644 --- a/gdb/compile/compile-object-load.h +++ b/gdb/compile/compile-object-load.h @@ -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 */