Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. int main(void)
  2. {
  3. return 0;
  4. }
  5.  
  6. gcc -std=c99 -W -Wall -Werror -O3 -S -o test.S test.c
  7.  
  8. .file "test.c"
  9. .section .text.startup,"ax",@progbits
  10. .p2align 4,,15
  11. .globl main
  12. .type main, @function
  13. main:
  14. .LFB0:
  15. .cfi_startproc
  16. xorl %eax, %eax
  17. ret
  18. .cfi_endproc
  19. .LFE0:
  20. .size main, .-main
  21. .ident "GCC: (Debian 4.7.2-5) 4.7.2"
  22. .section .note.GNU-stack,"",@progbits
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement