scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

memset.s (150B)


      1 	.file "memset.s"
      2 
      3 	.text
      4 	.globl	memset,_memset
      5 _memset:
      6 memset:
      7 	cld
      8 	movq	%rdi,%r8
      9 	movq	%rdx,%rcx
     10 	movl	%esi,%eax
     11 	rep
     12 	stosb
     13 	movq	%r8,%rax
     14 	ret