blob: b83280b7c379cda8ca5bfa21b76b4fe0d70ce877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
.file "a.c"
.section .text.startup,"x"
.p2align 4,,15
.globl main
.def main; .scl 2; .type 32; .endef
.seh_proc main
main:
.LFB0:
.cfi_startproc
.seh_pushreg %rbx
pushq %rbx
.cfi_def_cfa_offset 16
.cfi_offset 3, -16
.seh_stackalloc 32
subq $32, %rsp
.cfi_def_cfa_offset 48
.seh_endprologue
movl %ecx, %ebx
movq stdout(%rip), %rcx
call fflush
movl %ebx, %eax
addq $32, %rsp
.cfi_def_cfa_offset 16
popq %rbx
.cfi_def_cfa_offset 8
.cfi_restore 3
ret
.cfi_endproc
.LFE0:
.seh_endproc
.def fflush; .scl 2; .type 32; .endef
|