110d565efSmrg/* crti.S for x86.
210d565efSmrg
3*ec02198aSmrg   Copyright (C) 1993-2020 Free Software Foundation, Inc.
410d565efSmrg   Written By Fred Fish, Nov 1992
510d565efSmrg
610d565efSmrgThis file is free software; you can redistribute it and/or modify it
710d565efSmrgunder the terms of the GNU General Public License as published by the
810d565efSmrgFree Software Foundation; either version 3, or (at your option) any
910d565efSmrglater version.
1010d565efSmrg
1110d565efSmrgThis file is distributed in the hope that it will be useful, but
1210d565efSmrgWITHOUT ANY WARRANTY; without even the implied warranty of
1310d565efSmrgMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1410d565efSmrgGeneral Public License for more details.
1510d565efSmrg
1610d565efSmrgUnder Section 7 of GPL version 3, you are granted additional
1710d565efSmrgpermissions described in the GCC Runtime Library Exception, version
1810d565efSmrg3.1, as published by the Free Software Foundation.
1910d565efSmrg
2010d565efSmrgYou should have received a copy of the GNU General Public License and
2110d565efSmrga copy of the GCC Runtime Library Exception along with this program;
2210d565efSmrgsee the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
2310d565efSmrg<http://www.gnu.org/licenses/>.  */
2410d565efSmrg
2510d565efSmrg
2610d565efSmrg/* This file just supplies labeled starting points for the .init and .fini
2710d565efSmrg   sections.  It is linked in before the values-Xx.o files and also before
2810d565efSmrg   crtbegin.o.  */
2910d565efSmrg
3010d565efSmrg	.ident	"GNU C crti.s"
3110d565efSmrg
3210d565efSmrg	.section .init
3310d565efSmrg	.globl	_init
3410d565efSmrg	.type	_init,@function
3510d565efSmrg_init:
3610d565efSmrg
3710d565efSmrg	.section .fini
3810d565efSmrg	.globl	_fini
3910d565efSmrg	.type	_fini,@function
4010d565efSmrg_fini:
41