URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgcc/] [config/] [i386/] [crti.S] - Rev 734
Compare with Previous | Blame | View Log
/* crti.S for x86.Copyright (C) 1993, 2008, 2009 Free Software Foundation, Inc.Written By Fred Fish, Nov 1992This file is free software; you can redistribute it and/or modify itunder the terms of the GNU General Public License as published by theFree Software Foundation; either version 3, or (at your option) anylater version.This file is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.Under Section 7 of GPL version 3, you are granted additionalpermissions described in the GCC Runtime Library Exception, version3.1, as published by the Free Software Foundation.You should have received a copy of the GNU General Public License anda copy of the GCC Runtime Library Exception along with this program;see the files COPYING3 and COPYING.RUNTIME respectively. If not, see<http://www.gnu.org/licenses/>. *//* This file just supplies labeled starting points for the .init and .finisections. It is linked in before the values-Xx.o files and also beforecrtbegin.o. */.ident "GNU C crti.s".section .init.globl _init.type _init,@function_init:.section .fini.globl _fini.type _fini,@function_fini:
