diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 22:22:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-06 22:22:22 +0000 |
commit | 075ac5a2e4afc49370b979745d00755b18a79993 (patch) | |
tree | 73ef91c9d9bc6ccfb1f30cf57e9e689df753f4e1 /libc/sysdeps/linux/i386/crtn.S | |
parent | 000311a8ddfa7c46aed9a07a2d3cdab5f7b14412 (diff) |
syntax touchups as suggested by Peter S. Mazinger
Diffstat (limited to 'libc/sysdeps/linux/i386/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/i386/crtn.S | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/libc/sysdeps/linux/i386/crtn.S b/libc/sysdeps/linux/i386/crtn.S index 8554b9b2e..191250487 100644 --- a/libc/sysdeps/linux/i386/crtn.S +++ b/libc/sysdeps/linux/i386/crtn.S @@ -1,27 +1,29 @@ - .file "initfini.c" - .section .init -.globl _init - .type _init, @function +.file "initfini.c" + +.section .init +.global _init +.type _init,%function popl %ebx popl %ebp ret - .size _init, .-_init +.size _init,.-_init + - .section .fini -.globl _fini - .type _fini, @function +.section .fini +.global _fini +.type _fini,%function popl %ebx popl %ebp ret - .size _fini, .-_fini +.size _fini,.-_fini - .section .gnu.linkonce.t.__get_pc_thunk_bx,"ax",@progbits -.globl __get_pc_thunk_bx - .hidden __get_pc_thunk_bx - .type __get_pc_thunk_bx, @function +.section .gnu.linkonce.t.__get_pc_thunk_bx,"ax",@progbits +.global __get_pc_thunk_bx +.hidden __get_pc_thunk_bx +.type __get_pc_thunk_bx,%function __get_pc_thunk_bx: movl (%esp), %ebx ret |