Deleted Added
full compact
crti.S (96632) crti.S (146369)
1/*-
2 * Copyright 1996, 1997, 1998, 2000 John D. Polstra.
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

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

23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26 .section .init,"ax",@progbits
27 .align 4
28 .globl _init
29 .type _init,@function
30_init:
1/*-
2 * Copyright 1996, 1997, 1998, 2000 John D. Polstra.
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

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

23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26 .section .init,"ax",@progbits
27 .align 4
28 .globl _init
29 .type _init,@function
30_init:
31 sub $12,%esp /* re-align stack pointer */
31
32 .section .fini,"ax",@progbits
33 .align 4
34 .globl _fini
35 .type _fini,@function
36_fini:
32
33 .section .fini,"ax",@progbits
34 .align 4
35 .globl _fini
36 .type _fini,@function
37_fini:
38 sub $12,%esp /* re-align stack pointer */
37
38 .section .rodata
39
40 .section .rodata
39.ascii "$FreeBSD: head/lib/csu/i386-elf/crti.S 96632 2002-05-15 04:19:49Z obrien $\0"
41.ascii "$FreeBSD: head/lib/csu/i386-elf/crti.S 146369 2005-05-19 07:31:06Z dfr $\0"