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