crti.S revision 209869
170656Sobrien/*-
270656Sobrien * Copyright 2001 David E. O'Brien
370656Sobrien * All rights reserved.
470656Sobrien *
570656Sobrien * Redistribution and use in source and binary forms, with or without
670656Sobrien * modification, are permitted provided that the following conditions
770656Sobrien * are met:
870656Sobrien * 1. Redistributions of source code must retain the above copyright
970656Sobrien *    notice, this list of conditions and the following disclaimer.
1070656Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1170656Sobrien *    notice, this list of conditions and the following disclaimer in the
1270656Sobrien *    documentation and/or other materials provided with the distribution.
1370656Sobrien *
1470656Sobrien * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1570656Sobrien * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1670656Sobrien * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1770656Sobrien * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
1870656Sobrien * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
1970656Sobrien * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2070656Sobrien * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2170656Sobrien * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2270656Sobrien * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2370656Sobrien * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2470656Sobrien */
2570656Sobrien
2670656Sobrien	.section .init,"ax",@progbits
2770656Sobrien	.align	2
2870656Sobrien	.globl	_init
29209869Snwhitehorn	.section ".opd","aw"
30209869Snwhitehorn	.align	3
3170656Sobrien_init:
32209869Snwhitehorn	.quad	._init,.TOC.@tocbase,0
33209869Snwhitehorn	.previous
34209869Snwhitehorn
35209869Snwhitehorn	.align 4
36209869Snwhitehorn	.global	._init
37209869Snwhitehorn	.type	._init,@function
38209869Snwhitehorn._init:
39209869Snwhitehorn	stdu 1,-48(1)
4070656Sobrien	mflr 0
41209869Snwhitehorn	std 0,64(1)
4270656Sobrien
4370656Sobrien	.section .fini,"ax",@progbits
4470656Sobrien	.align	2
4570656Sobrien	.globl	_fini
46209869Snwhitehorn	.section ".opd","aw"
47209869Snwhitehorn	.align	3
4870656Sobrien_fini:
49209869Snwhitehorn	.quad	._fini,.TOC.@tocbase,0
50209869Snwhitehorn	.previous
51209869Snwhitehorn
52209869Snwhitehorn	.align 4
53209869Snwhitehorn	.global	._fini
54209869Snwhitehorn	.type	._fini,@function
55209869Snwhitehorn._fini:
56209869Snwhitehorn	stdu 1,-48(1)
5770656Sobrien	mflr 0
58209869Snwhitehorn	std 0,64(1)
5996632Sobrien
6096632Sobrien	.section .rodata
6196632Sobrien.ascii "$FreeBSD: head/lib/csu/powerpc64/crti.S 209869 2010-07-10 03:45:55Z nwhitehorn $\0"
62