Home | History | Annotate | Line # | Download | only in sh3
      1  1.2  uwe /*	$NetBSD: crtend.S,v 1.2 2012/01/31 20:12:47 uwe Exp $	*/
      2  1.1  uwe /*-
      3  1.1  uwe  * Copyright (c) 2010 Joerg Sonnenberger <joerg (at) NetBSD.org>
      4  1.1  uwe  * All rights reserved.
      5  1.1  uwe  *
      6  1.1  uwe  * Redistribution and use in source and binary forms, with or without
      7  1.1  uwe  * modification, are permitted provided that the following conditions
      8  1.1  uwe  * are met:
      9  1.1  uwe  *
     10  1.1  uwe  * 1. Redistributions of source code must retain the above copyright
     11  1.1  uwe  *    notice, this list of conditions and the following disclaimer.
     12  1.1  uwe  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  uwe  *    notice, this list of conditions and the following disclaimer in
     14  1.1  uwe  *    the documentation and/or other materials provided with the
     15  1.1  uwe  *    distribution.
     16  1.1  uwe  *
     17  1.1  uwe  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     18  1.1  uwe  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     19  1.1  uwe  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     20  1.1  uwe  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
     21  1.1  uwe  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
     22  1.1  uwe  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
     23  1.1  uwe  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     24  1.1  uwe  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     25  1.1  uwe  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     26  1.1  uwe  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
     27  1.1  uwe  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28  1.1  uwe  * SUCH DAMAGE.
     29  1.1  uwe  */
     30  1.1  uwe 
     31  1.1  uwe #include <machine/asm.h>
     32  1.1  uwe 
     33  1.2  uwe RCSID("$NetBSD: crtend.S,v 1.2 2012/01/31 20:12:47 uwe Exp $")
     34  1.1  uwe 
     35  1.1  uwe 	.section	.ctors, "aw", @progbits
     36  1.2  uwe 	.p2align 2
     37  1.1  uwe 	.global		__CTOR_LIST_END__
     38  1.1  uwe 	.hidden 	__CTOR_LIST_END__
     39  1.1  uwe __CTOR_LIST_END__:
     40  1.1  uwe 	.long 0
     41  1.1  uwe 
     42  1.1  uwe 	.section	.dtors, "aw", @progbits
     43  1.2  uwe 	.p2align 2
     44  1.1  uwe 	.long 0
     45  1.1  uwe 
     46  1.1  uwe 	.section	.eh_frame, "a", @progbits
     47  1.2  uwe 	.p2align 2
     48  1.1  uwe 	.long 0
     49  1.1  uwe 
     50  1.1  uwe 	.section	.jcr, "aw", @progbits
     51  1.2  uwe 	.p2align 2
     52  1.1  uwe 	.long 0
     53