From 51ddd87e60b2df058f28aff16dab8d7fcc6f6d20 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 5 Nov 2003 00:29:20 +0000 Subject: Begin the conversion to using per-arch crti.S and crtn.S --- libc/sysdeps/linux/i386/crti.S | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 libc/sysdeps/linux/i386/crti.S (limited to 'libc/sysdeps/linux/i386/crti.S') diff --git a/libc/sysdeps/linux/i386/crti.S b/libc/sysdeps/linux/i386/crti.S new file mode 100644 index 000000000..3cc97f833 --- /dev/null +++ b/libc/sysdeps/linux/i386/crti.S @@ -0,0 +1,40 @@ + .file "initfini.c" +#APP + + .section .init +#NO_APP +.globl _init + .type _init, @function +_init: + pushl %ebp + movl %esp, %ebp + pushl %ebx + call __i686.get_pc_thunk.bx + addl $_GLOBAL_OFFSET_TABLE_, %ebx +#APP + + + + + .section .fini +#NO_APP +.globl _fini + .type _fini, @function +_fini: + pushl %ebp + movl %esp, %ebp + pushl %ebx + call __i686.get_pc_thunk.bx + addl $_GLOBAL_OFFSET_TABLE_, %ebx +#APP + + + + .section .gnu.linkonce.t.__i686.get_pc_thunk.bx,"ax",@progbits +.globl __i686.get_pc_thunk.bx + .hidden __i686.get_pc_thunk.bx + .type __i686.get_pc_thunk.bx, @function +__i686.get_pc_thunk.bx: + movl (%esp), %ebx + ret + .ident "GCC: (GNU) 3.3.2 (Debian)" -- cgit v1.2.3