crtend.S revision 1.1
11.1Smartin/*	$NetBSD: crtend.S,v 1.1 2013/07/11 06:57:15 martin Exp $	*/
21.1Smartin/*-
31.1Smartin * Copyright (c) 2010 Joerg Sonnenberger <joerg@NetBSD.org>
41.1Smartin * All rights reserved.
51.1Smartin *
61.1Smartin * Redistribution and use in source and binary forms, with or without
71.1Smartin * modification, are permitted provided that the following conditions
81.1Smartin * are met:
91.1Smartin *
101.1Smartin * 1. Redistributions of source code must retain the above copyright
111.1Smartin *    notice, this list of conditions and the following disclaimer.
121.1Smartin * 2. Redistributions in binary form must reproduce the above copyright
131.1Smartin *    notice, this list of conditions and the following disclaimer in
141.1Smartin *    the documentation and/or other materials provided with the
151.1Smartin *    distribution.
161.1Smartin *
171.1Smartin * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
181.1Smartin * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
191.1Smartin * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
201.1Smartin * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
211.1Smartin * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
221.1Smartin * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
231.1Smartin * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
241.1Smartin * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
251.1Smartin * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
261.1Smartin * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
271.1Smartin * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
281.1Smartin * SUCH DAMAGE.
291.1Smartin */
301.1Smartin
311.1Smartin#include <machine/asm.h>
321.1Smartin
331.1SmartinRCSID("$NetBSD: crtend.S,v 1.1 2013/07/11 06:57:15 martin Exp $")
341.1Smartin
351.1Smartin	.section	.ctors, "aw", @progbits
361.1Smartin	.align 8
371.1Smartin	.global		__CTOR_LIST_END__
381.1Smartin	.hidden 	__CTOR_LIST_END__
391.1Smartin__CTOR_LIST_END__:
401.1Smartin	.quad 0
411.1Smartin
421.1Smartin	.section	.dtors, "aw", @progbits
431.1Smartin	.align 8
441.1Smartin	.global		__DTOR_LIST_END__
451.1Smartin	.hidden 	__DTOR_LIST_END__
461.1Smartin__DTOR_LIST_END__:
471.1Smartin	.quad 0
481.1Smartin
491.1Smartin	.section	.eh_frame, "a", @progbits
501.1Smartin	.align 8
511.1Smartin	.quad 0
521.1Smartin
531.1Smartin	.section	.jcr, "aw", @progbits
541.1Smartin	.align 8
551.1Smartin	.quad 0
56