Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int
  4. main(void)
  5. {
  6. printf("%s\n", 666);
  7. return 0;
  8. }
  9.  
  10. ----
  11.  
  12. .file "j.c"
  13. .section .rodata
  14. .LC0:
  15. .string "%s\n"
  16. .text
  17. .globl main
  18. .type main, @function
  19. main:
  20. .LFB10:
  21. pushq %rbp
  22. .LCFI0:
  23. movq %rsp, %rbp
  24. .LCFI1:
  25. movl $666, %esi
  26. movl $.LC0, %edi
  27. movl $0, %eax
  28. call printf
  29. movl $0, %eax
  30. leave
  31. ret
  32. .LFE10:
  33. .size main, .-main
  34. .section .eh_frame,"a",@progbits
  35. .Lframe1:
  36. .long .LECIE1-.LSCIE1
  37. .LSCIE1:
  38. .long 0x0
  39. .byte 0x1
  40. .string "zR"
  41. .uleb128 0x1
  42. .sleb128 -8
  43. .byte 0x10
  44. .uleb128 0x1
  45. .byte 0x3
  46. .byte 0xc
  47. .uleb128 0x7
  48. .uleb128 0x8
  49. .byte 0x90
  50. .uleb128 0x1
  51. .align 8
  52. .LECIE1:
  53. .LSFDE1:
  54. .long .LEFDE1-.LASFDE1
  55. .LASFDE1:
  56. .long .LASFDE1-.Lframe1
  57. .long .LFB10
  58. .long .LFE10-.LFB10
  59. .uleb128 0x0
  60. .byte 0x4
  61. .long .LCFI0-.LFB10
  62. .byte 0xe
  63. .uleb128 0x10
  64. .byte 0x86
  65. .uleb128 0x2
  66. .byte 0x4
  67. .long .LCFI1-.LCFI0
  68. .byte 0xd
  69. .uleb128 0x6
  70. .align 8
  71. .LEFDE1:
  72. .ident "GCC: (GNU) 4.2.1 20070719 "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement