diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 00:29:20 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 00:29:20 +0000 |
commit | 51ddd87e60b2df058f28aff16dab8d7fcc6f6d20 (patch) | |
tree | 30df45215b23c94a40609d665a5f6c53b42e654b /libc/sysdeps/linux/i386/crtn.S | |
parent | bb13f09f1665b9b1f851ce69d13532c73fac0e98 (diff) |
Begin the conversion to using per-arch crti.S and crtn.S
Diffstat (limited to 'libc/sysdeps/linux/i386/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/i386/crtn.S | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/i386/crtn.S b/libc/sysdeps/linux/i386/crtn.S new file mode 100644 index 000000000..733f25b83 --- /dev/null +++ b/libc/sysdeps/linux/i386/crtn.S @@ -0,0 +1,33 @@ + .file "initfini.c" +#APP + + .section .init +#NO_APP +.globl _init + .type _init, @function +#NO_APP + popl %ebx + popl %ebp + ret + .size _init, .-_init +#APP + + .section .fini +#NO_APP +.globl _fini + .type _fini, @function +#NO_APP + popl %ebx + popl %ebp + ret + .size _fini, .-_fini +#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)" |