1	.file	"main.c"
2	.text
3	.globl	x
4	.data
5	.align 4
6	.type	x, @object
7	.size	x, 4
8x:
9	.long	1
10	.text
11	.globl	main
12	.type	main, @function
13main:
14.LFB0:
15	.cfi_startproc
16	pushq	%rbp
17	.cfi_def_cfa_offset 16
18	.cfi_offset 6, -16
19	movq	%rsp, %rbp
20	.cfi_def_cfa_register 6
21	movl	$42, -4(%rbp)
22	movl	$1, %eax
23	popq	%rbp
24	.cfi_def_cfa 7, 8
25	ret
26	.cfi_endproc
27.LFE0:
28	.size	main, .-main
29	.ident	"GCC: (GNU) 10.1.0"
30	.section	.note.GNU-stack,"",@progbits
31