1214571Sdim/* AVR-specific support for 32-bit ELF.
2214571Sdim   Copyright 2006 Free Software Foundation, Inc.
3214571Sdim
4214571Sdim   Written by Bjoern Haase <bjoern.m.haase@web.de>
5214571Sdim
6214571Sdim   This file is part of BFD, the Binary File Descriptor library.
7214571Sdim
8214571Sdim   This program is free software; you can redistribute it and/or modify
9214571Sdim   it under the terms of the GNU General Public License as published by
10214571Sdim   the Free Software Foundation; either version 2 of the License, or
11214571Sdim   (at your option) any later version.
12214571Sdim
13214571Sdim   This program is distributed in the hope that it will be useful,
14214571Sdim   but WITHOUT ANY WARRANTY; without even the implied warranty of
15214571Sdim   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16214571Sdim   GNU General Public License for more details.
17214571Sdim
18214571Sdim   You should have received a copy of the GNU General Public License
19214571Sdim   along with this program; if not, write to the Free Software
20214571Sdim   Foundation, Inc., 51 Franklin Street - Fifth Floor,
21214571Sdim   Boston, MA 02110-1301, USA.  */
22214571Sdim
23214571Sdim
24214571Sdim/* These four functions will be called from the ld back-end.  */
25214571Sdim
26214571Sdimextern void
27214571Sdimelf32_avr_setup_params (struct bfd_link_info *, bfd *, asection *,
28214571Sdim                        bfd_boolean, bfd_boolean, bfd_boolean,
29214571Sdim                        bfd_vma, bfd_boolean);
30214571Sdim
31214571Sdimextern int
32214571Sdimelf32_avr_setup_section_lists (bfd *, struct bfd_link_info *);
33214571Sdim
34214571Sdimextern bfd_boolean
35214571Sdimelf32_avr_size_stubs (bfd *, struct bfd_link_info *, bfd_boolean);
36214571Sdim
37214571Sdimextern bfd_boolean
38214571Sdimelf32_avr_build_stubs (struct bfd_link_info *);
39