https://github.com/Kitware/CMake
Raw File
Tip revision: f15cfd891d1e01247ed285320ae32b6c3182ac8f authored by Brad King on 18 July 2017, 15:18:18 UTC
CMake 3.9.0
Tip revision: f15cfd8
main-linux-x86-gas.s
	.section	.rodata
	.align 4
.LC0:
	.string	"hello assembler world, %d arguments  given\n"
	.text
.globl main
	.type	main, @function
main:
	leal	4(%esp), %ecx
	andl	$-16, %esp
	pushl	-4(%ecx)
	pushl	%ebp
	movl	%esp, %ebp
	pushl	%ecx
	subl	$20, %esp
	movl	(%ecx), %eax
	movl	%eax, 4(%esp)
	movl	$.LC0, (%esp)
	call	printf
	movl	$0, %eax
	addl	$20, %esp
	popl	%ecx
	popl	%ebp
	leal	-4(%ecx), %esp
	ret
	.size	main, .-main
	.ident	"GCC: (GNU) 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)"
	.section	.note.GNU-stack,"",@progbits
back to top