mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-14 03:15:06 +08:00
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.
This commit is contained in:
@ -1,3 +1,10 @@
|
||||
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..
|
||||
|
@ -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 *);
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user