163d1a8abSmrg/* Specialized code needed to support construction and destruction of
263d1a8abSmrg   file-scope objects in C++ and Java code, and to support exception handling.
3*ec02198aSmrg   Copyright (C) 1999-2020 Free Software Foundation, Inc.
463d1a8abSmrg   Contributed by Charles-Antoine Gauthier (charles.gauthier@iit.nrc.ca).
563d1a8abSmrg
663d1a8abSmrgThis file is part of GCC.
763d1a8abSmrg
863d1a8abSmrgGCC is free software; you can redistribute it and/or modify
963d1a8abSmrgit under the terms of the GNU General Public License as published by
1063d1a8abSmrgthe Free Software Foundation; either version 3, or (at your option)
1163d1a8abSmrgany later version.
1263d1a8abSmrg
1363d1a8abSmrgGCC is distributed in the hope that it will be useful,
1463d1a8abSmrgbut WITHOUT ANY WARRANTY; without even the implied warranty of
1563d1a8abSmrgMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1663d1a8abSmrgGNU General Public License for more details.
1763d1a8abSmrg
1863d1a8abSmrgUnder Section 7 of GPL version 3, you are granted additional
1963d1a8abSmrgpermissions described in the GCC Runtime Library Exception, version
2063d1a8abSmrg3.1, as published by the Free Software Foundation.
2163d1a8abSmrg
2263d1a8abSmrgYou should have received a copy of the GNU General Public License and
2363d1a8abSmrga copy of the GCC Runtime Library Exception along with this program;
2463d1a8abSmrgsee the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
2563d1a8abSmrg<http://www.gnu.org/licenses/>.  */
2663d1a8abSmrg
2763d1a8abSmrg/*
2863d1a8abSmrg * This file just supplies function prologues for the .init and .fini
2963d1a8abSmrg * sections.  It is linked in before crtbegin.o.
3063d1a8abSmrg */
3163d1a8abSmrg
3263d1a8abSmrg	.ident  "GNU C crti.o"
3363d1a8abSmrg
3463d1a8abSmrg	.section .init
3563d1a8abSmrg	.globl  _init
3663d1a8abSmrg	.type   _init,@function
3763d1a8abSmrg_init:
3863d1a8abSmrg	linkw %fp,#0
3963d1a8abSmrg
4063d1a8abSmrg	.section .fini
4163d1a8abSmrg	.globl  _fini
4263d1a8abSmrg	.type   _fini,@function
4363d1a8abSmrg_fini:
4463d1a8abSmrg	linkw %fp,#0
45