summaryrefslogtreecommitdiffstats
path: root/binutils-2.19/bfd/elf32-spu.h
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-06-17 15:33:58 -0700
committerDan Albert <danalbert@google.com>2015-06-17 15:33:58 -0700
commit7a1d76c6c5b354abbba43308d5061eb6ff96d3ea (patch)
tree78a639d039e517565afa35d7af021a6967bec0d9 /binutils-2.19/bfd/elf32-spu.h
parentc39479f4ab4d372b518957871e1f205a03e7c3d6 (diff)
downloadtoolchain_binutils-7a1d76c6c5b354abbba43308d5061eb6ff96d3ea.zip
toolchain_binutils-7a1d76c6c5b354abbba43308d5061eb6ff96d3ea.tar.gz
toolchain_binutils-7a1d76c6c5b354abbba43308d5061eb6ff96d3ea.tar.bz2
Remove old versions of binutils.
Change-Id: If634d8d30cfa8c88ca3ba59691a0df4ee5596f85
Diffstat (limited to 'binutils-2.19/bfd/elf32-spu.h')
-rw-r--r--binutils-2.19/bfd/elf32-spu.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/binutils-2.19/bfd/elf32-spu.h b/binutils-2.19/bfd/elf32-spu.h
deleted file mode 100644
index ec443fd..0000000
--- a/binutils-2.19/bfd/elf32-spu.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/* SPU specific support for 32-bit ELF.
-
- Copyright 2006, 2007, 2008 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-/* Extra info kept for SPU sections. */
-
-struct spu_elf_stack_info;
-
-struct _spu_elf_section_data
-{
- struct bfd_elf_section_data elf;
-
- union {
- /* Info kept for input sections. */
- struct {
- /* Stack analysis info kept for this section. */
- struct spu_elf_stack_info *stack_info;
- } i;
-
- /* Info kept for output sections. */
- struct {
- /* Non-zero for overlay output sections. */
- unsigned int ovl_index;
- unsigned int ovl_buf;
- } o;
- } u;
-};
-
-#define spu_elf_section_data(sec) \
- ((struct _spu_elf_section_data *) elf_section_data (sec))
-
-struct _ovl_stream
-{
- const void *start;
- const void *end;
-};
-
-extern void spu_elf_plugin (int);
-extern bfd_boolean spu_elf_open_builtin_lib (bfd **,
- const struct _ovl_stream *);
-extern bfd_boolean spu_elf_create_sections (struct bfd_link_info *, int, int);
-extern bfd_boolean spu_elf_find_overlays (struct bfd_link_info *);
-extern int spu_elf_size_stubs (struct bfd_link_info *,
- void (*) (asection *, asection *, const char *),
- int);
-extern bfd_boolean spu_elf_build_stubs (struct bfd_link_info *, int);
-extern asection *spu_elf_check_vma (struct bfd_link_info *, int,
- unsigned int, unsigned int, unsigned int,
- unsigned int, int, void (*) (void),
- FILE *(*) (void), void (*) (void));