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