Deleted Added
full compact
crti.S (96632) crti.S (209869)
1/*-
2 * Copyright 2001 David E. O'Brien
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26 .section .init,"ax",@progbits
27 .align 2
28 .globl _init
1/*-
2 * Copyright 2001 David E. O'Brien
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26 .section .init,"ax",@progbits
27 .align 2
28 .globl _init
29 .type _init,@function
29 .section ".opd","aw"
30 .align 3
30_init:
31_init:
31 stwu 1,-16(1)
32 .quad ._init,.TOC.@tocbase,0
33 .previous
34
35 .align 4
36 .global ._init
37 .type ._init,@function
38._init:
39 stdu 1,-48(1)
32 mflr 0
40 mflr 0
33 stw 31,12(1)
34 stw 0,20(1)
35 mr 31,1
41 std 0,64(1)
36
42
37
38 .section .fini,"ax",@progbits
39 .align 2
40 .globl _fini
43 .section .fini,"ax",@progbits
44 .align 2
45 .globl _fini
46 .section ".opd","aw"
47 .align 3
41_fini:
48_fini:
42 stwu 1,-16(1)
49 .quad ._fini,.TOC.@tocbase,0
50 .previous
51
52 .align 4
53 .global ._fini
54 .type ._fini,@function
55._fini:
56 stdu 1,-48(1)
43 mflr 0
57 mflr 0
44 stw 31,12(1)
45 stw 0,20(1)
46 mr 31,1
58 std 0,64(1)
47
59
48
49 .section .rodata
60 .section .rodata
50.ascii "$FreeBSD: head/lib/csu/powerpc/crti.S 96632 2002-05-15 04:19:49Z obrien $\0"
61.ascii "$FreeBSD: head/lib/csu/powerpc64/crti.S 209869 2010-07-10 03:45:55Z nwhitehorn $\0"