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