crtn.S 528 B

123456789101112131415161718192021222324252627282930313233
  1. .file "initfini.c"
  2. #APP
  3. .section .init
  4. #NO_APP
  5. .globl _init
  6. .type _init, @function
  7. #NO_APP
  8. popl %ebx
  9. popl %ebp
  10. ret
  11. .size _init, .-_init
  12. #APP
  13. .section .fini
  14. #NO_APP
  15. .globl _fini
  16. .type _fini, @function
  17. #NO_APP
  18. popl %ebx
  19. popl %ebp
  20. ret
  21. .size _fini, .-_fini
  22. #APP
  23. .section .gnu.linkonce.t.__i686.get_pc_thunk.bx,"ax",@progbits
  24. .globl __i686.get_pc_thunk.bx
  25. .hidden __i686.get_pc_thunk.bx
  26. .type __i686.get_pc_thunk.bx, @function
  27. __i686.get_pc_thunk.bx:
  28. movl (%esp), %ebx
  29. ret
  30. .ident "GCC: (GNU) 3.3.2 (Debian)"