| OLD | NEW |
| 1 /* PowerPC64-specific support for 64-bit ELF. | 1 /* PowerPC64-specific support for 64-bit ELF. |
| 2 Copyright 2002, 2003, 2004, 2005, 2007, 2008, 2010, 2011 | 2 Copyright 2002, 2003, 2004, 2005, 2007, 2008, 2010, 2011, 2012 |
| 3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 This file is part of BFD, the Binary File Descriptor library. | 5 This file is part of BFD, the Binary File Descriptor library. |
| 6 | 6 |
| 7 This program is free software; you can redistribute it and/or modify | 7 This program is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
| 9 the Free Software Foundation; either version 3 of the License, or | 9 the Free Software Foundation; either version 3 of the License, or |
| 10 (at your option) any later version. | 10 (at your option) any later version. |
| 11 | 11 |
| 12 This program is distributed in the hope that it will be useful, | 12 This program is distributed in the hope that it will be useful, |
| (...skipping 29 matching lines...) Expand all Loading... |
| 42 (struct bfd_link_info *, asection *); | 42 (struct bfd_link_info *, asection *); |
| 43 bfd_boolean ppc64_elf_layout_multitoc | 43 bfd_boolean ppc64_elf_layout_multitoc |
| 44 (struct bfd_link_info *); | 44 (struct bfd_link_info *); |
| 45 void ppc64_elf_finish_multitoc_partition | 45 void ppc64_elf_finish_multitoc_partition |
| 46 (struct bfd_link_info *); | 46 (struct bfd_link_info *); |
| 47 bfd_boolean ppc64_elf_check_init_fini | 47 bfd_boolean ppc64_elf_check_init_fini |
| 48 (struct bfd_link_info *); | 48 (struct bfd_link_info *); |
| 49 bfd_boolean ppc64_elf_next_input_section | 49 bfd_boolean ppc64_elf_next_input_section |
| 50 (struct bfd_link_info *, asection *); | 50 (struct bfd_link_info *, asection *); |
| 51 bfd_boolean ppc64_elf_size_stubs | 51 bfd_boolean ppc64_elf_size_stubs |
| 52 (struct bfd_link_info *, bfd_signed_vma, bfd_boolean); | 52 (struct bfd_link_info *, bfd_signed_vma, bfd_boolean, int, int); |
| 53 bfd_boolean ppc64_elf_build_stubs | 53 bfd_boolean ppc64_elf_build_stubs |
| 54 (bfd_boolean, struct bfd_link_info *, char **); | 54 (bfd_boolean, struct bfd_link_info *, char **); |
| 55 void ppc64_elf_restore_symbols | 55 void ppc64_elf_restore_symbols |
| 56 (struct bfd_link_info *info); | 56 (struct bfd_link_info *info); |
| OLD | NEW |