[binutils-gdb] tic54x bfd.h tidy

Alan Modra amodra@sourceware.org
Mon Sep 23 00:58:00 GMT 2019


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=c348479ddd10079b8b8714598d8e1458d25e095d

commit c348479ddd10079b8b8714598d8e1458d25e095d
Author: Alan Modra <amodra@gmail.com>
Date:   Mon Sep 23 10:03:37 2019 +0930

    tic54x bfd.h tidy
    
    	* bfd-in.h: Delete ticoff function declarations.
    	* coff-tic54x.c (bfd_ticoff_set_section_load_page),
    	(bfd_ticoff_get_section_load_page): Make static.
    	* bfd-in2.h: Regenerate.

Diff:
---
 bfd/ChangeLog     | 7 +++++++
 bfd/bfd-in.h      | 8 --------
 bfd/bfd-in2.h     | 8 --------
 bfd/coff-tic54x.c | 4 ++--
 4 files changed, 9 insertions(+), 18 deletions(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 9130fd5..d42ead0 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,12 @@
 2019-09-23  Alan Modra  <amodra@gmail.com>
 
+	* bfd-in.h: Delete ticoff function declarations.
+	* coff-tic54x.c (bfd_ticoff_set_section_load_page),
+	(bfd_ticoff_get_section_load_page): Make static.
+	* bfd-in2.h: Regenerate.
+
+2019-09-23  Alan Modra  <amodra@gmail.com>
+
 	* bfd-in.h: Move h8300 function declaration to..
 	* cpu-h8300.h: ..here, new file.
 	* cpu-h8300.c: Include cpu-h8300.h.
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h
index 4216808..7080fbe 100644
--- a/bfd/bfd-in.h
+++ b/bfd/bfd-in.h
@@ -993,11 +993,3 @@ extern bfd_boolean elf32_aarch64_size_stubs
    void (*) (void));
 extern bfd_boolean elf32_aarch64_build_stubs
   (struct bfd_link_info *);
-
-
-/* TI COFF load page support.  */
-extern void bfd_ticoff_set_section_load_page
-  (struct bfd_section *, int);
-
-extern int bfd_ticoff_get_section_load_page
-  (struct bfd_section *);
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h
index a5c0f58..90d9fc9 100644
--- a/bfd/bfd-in2.h
+++ b/bfd/bfd-in2.h
@@ -1000,14 +1000,6 @@ extern bfd_boolean elf32_aarch64_size_stubs
    void (*) (void));
 extern bfd_boolean elf32_aarch64_build_stubs
   (struct bfd_link_info *);
-
-
-/* TI COFF load page support.  */
-extern void bfd_ticoff_set_section_load_page
-  (struct bfd_section *, int);
-
-extern int bfd_ticoff_get_section_load_page
-  (struct bfd_section *);
 /* Extracted from init.c.  */
 unsigned int bfd_init (void);
 
diff --git a/bfd/coff-tic54x.c b/bfd/coff-tic54x.c
index 6c7acb4..0c3e56a 100644
--- a/bfd/coff-tic54x.c
+++ b/bfd/coff-tic54x.c
@@ -82,14 +82,14 @@ tic54x_getl_signed_32 (const void *p)
 #define coff_get_section_load_page bfd_ticoff_get_section_load_page
 #define coff_set_section_load_page bfd_ticoff_set_section_load_page
 
-void
+static void
 bfd_ticoff_set_section_load_page (asection *sect,
 				  int page)
 {
   sect->lma = (sect->lma & ADDR_MASK) | PG_TO_FLAG(page);
 }
 
-int
+static int
 bfd_ticoff_get_section_load_page (asection *sect)
 {
   int page;



More information about the Binutils-cvs mailing list