brintos

brintos / llvm-project-archived public Read only

0
0
Text · 253 B · 75055fb Raw
22 lines · plain
1  .globl main2  .type main, %function3main:4	pushq	%rax5	callq	foo6	movl	$0x1, %eax7	popq	%rdx8	retq9.size main, .-main10 11  .globl foo12  .type foo, %function13foo:14	jmp	bar15.size foo, .-foo16 17  .globl bar18  .type bar, %function19bar:20	retq21.size bar, .-bar22