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