fix clobber of edx in i386 vsyscall asm

this function does not obey the normal calling convention; like a
syscall instruction, it's expected not to clobber any registers except
the return value. clobbering edx could break callers that were reusing
the value cached in edx after the syscall returns.
This commit is contained in:
Rich Felker
2012-11-11 13:56:37 -05:00
parent dc059f03e8
commit e9b885ee55
+2 -1
View File
@@ -16,7 +16,8 @@ __vsyscall:
mov 12(%esp),%edi
push %eax
call 1f
2: pop %ebx
2: mov %ebx,%edx
pop %ebx
pop %ebx
pop %edi
ret