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