Remove unneeded stores back into the function arguments.

Submitted by:	Christoph Mallon
This commit is contained in:
Ed Schouten 2009-06-22 10:56:08 +00:00
parent bed56bb51b
commit f863f9cbd9
2 changed files with 0 additions and 4 deletions

View File

@ -33,7 +33,5 @@ ENTRY(div)
movl 8(%esp),%ecx
cdq
idiv %ecx
movl %eax,4(%esp)
movl %edx,8(%esp)
ret
END(div)

View File

@ -36,7 +36,5 @@ ENTRY(ldiv)
movl 8(%esp),%ecx
cdq
idiv %ecx
movl %eax,4(%esp)
movl %edx,8(%esp)
ret
END(ldiv)