diff options
author | Alan Modra <amodra@gmail.com> | 2019-09-23 10:01:31 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2019-09-23 10:27:20 +0930 |
commit | d48d68b618f0950f63bdf2842a550384c0c58bc3 (patch) | |
tree | cd730750b7bb6e0677f9e6bde3c845e249319337 | |
parent | 7beeaeb8c6d84ecc899b9454d9b92521e515fe4a (diff) | |
download | gdb-d48d68b618f0950f63bdf2842a550384c0c58bc3.zip gdb-d48d68b618f0950f63bdf2842a550384c0c58bc3.tar.gz gdb-d48d68b618f0950f63bdf2842a550384c0c58bc3.tar.bz2 |
v850 bfd.h tidy
bfd/
* bfd-in.h: Move v850 function declarations..
* elf32-v850.h: ..to here, new file.
* elf32-v850.c: Include elf32-v850.h.
* bfd-in2.h: Regenerate.
ld/
* emultempl/v850elf.em: Include elf32-v850.h.
-rw-r--r-- | bfd/ChangeLog | 7 | ||||
-rw-r--r-- | bfd/bfd-in.h | 7 | ||||
-rw-r--r-- | bfd/bfd-in2.h | 7 | ||||
-rw-r--r-- | bfd/elf32-v850.c | 1 | ||||
-rw-r--r-- | bfd/elf32-v850.h | 25 | ||||
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/emultempl/v850elf.em | 1 |
7 files changed, 38 insertions, 14 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d5521fb..61d31aa 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,12 @@ 2019-09-23 Alan Modra <amodra@gmail.com> + * bfd-in.h: Move v850 function declarations.. + * elf32-v850.h: ..to here, new file. + * elf32-v850.c: Include elf32-v850.h. + * bfd-in2.h: Regenerate. + +2019-09-23 Alan Modra <amodra@gmail.com> + * bfd-in.h: Move mips function declaration to.. * elfxx-mips.h: ..here. * bfd-in2.h: Regenerate. diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index c2105e3..fe5e168 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -1012,10 +1012,3 @@ extern void bfd_elf32_ia64_after_parse extern void bfd_elf64_ia64_after_parse (int); - -/* V850 Note manipulation routines. */ -extern bfd_boolean v850_elf_create_sections - (struct bfd_link_info *); - -extern bfd_boolean v850_elf_set_note - (bfd *, unsigned int, unsigned int); diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 9960163..6d92b89 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1019,13 +1019,6 @@ extern void bfd_elf32_ia64_after_parse extern void bfd_elf64_ia64_after_parse (int); - -/* V850 Note manipulation routines. */ -extern bfd_boolean v850_elf_create_sections - (struct bfd_link_info *); - -extern bfd_boolean v850_elf_set_note - (bfd *, unsigned int, unsigned int); /* Extracted from init.c. */ unsigned int bfd_init (void); diff --git a/bfd/elf32-v850.c b/bfd/elf32-v850.c index 21df3c8..c8a97ed 100644 --- a/bfd/elf32-v850.c +++ b/bfd/elf32-v850.c @@ -29,6 +29,7 @@ #include "elf-bfd.h" #include "elf/v850.h" #include "libiberty.h" +#include "elf32-v850.h" /* Sign-extend a 17-bit number. */ #define SEXT17(x) ((((x) & 0x1ffff) ^ 0x10000) - 0x10000) diff --git a/bfd/elf32-v850.h b/bfd/elf32-v850.h new file mode 100644 index 0000000..0ed5871 --- /dev/null +++ b/bfd/elf32-v850.h @@ -0,0 +1,25 @@ +/* V850 Note manipulation routines. + Copyright (C) 2019 Free Software Foundation, Inc. + + This file is part of BFD, the Binary File Descriptor library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. */ + +extern bfd_boolean v850_elf_create_sections + (struct bfd_link_info *); + +extern bfd_boolean v850_elf_set_note + (bfd *, unsigned int, unsigned int); diff --git a/ld/ChangeLog b/ld/ChangeLog index 56fc0a2..fa5913e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,9 @@ 2019-09-23 Alan Modra <amodra@gmail.com> + * emultempl/v850elf.em: Include elf32-v850.h. + +2019-09-23 Alan Modra <amodra@gmail.com> + * emultempl/cskyelf.em: Include elf32-csky.h. 2019-09-22 Alan Modra <amodra@gmail.com> diff --git a/ld/emultempl/v850elf.em b/ld/emultempl/v850elf.em index ac7051f..3e3e09d 100644 --- a/ld/emultempl/v850elf.em +++ b/ld/emultempl/v850elf.em @@ -24,6 +24,7 @@ # fragment <<EOF #include "ldctor.h" +#include "elf32-v850.h" static bfd_boolean is_v850_target (void) |