31 lines
440 B
Plaintext
31 lines
440 B
Plaintext
.file "main.c"
|
|
.text
|
|
.globl x
|
|
.data
|
|
.align 4
|
|
.type x, @object
|
|
.size x, 4
|
|
x:
|
|
.long 1
|
|
.text
|
|
.globl main
|
|
.type main, @function
|
|
main:
|
|
.LFB0:
|
|
.cfi_startproc
|
|
pushq %rbp
|
|
.cfi_def_cfa_offset 16
|
|
.cfi_offset 6, -16
|
|
movq %rsp, %rbp
|
|
.cfi_def_cfa_register 6
|
|
movl $42, -4(%rbp)
|
|
movl $1, %eax
|
|
popq %rbp
|
|
.cfi_def_cfa 7, 8
|
|
ret
|
|
.cfi_endproc
|
|
.LFE0:
|
|
.size main, .-main
|
|
.ident "GCC: (GNU) 10.1.0"
|
|
.section .note.GNU-stack,"",@progbits
|