Revert "Fix incorrect relocations for x86."

Bug: 16853291
This reverts commit 512bc52326.
This commit is contained in:
Dan Albert
2014-08-08 15:15:29 -07:00
parent 1c5e415f8c
commit 3726f9c38b
389 changed files with 390 additions and 390 deletions

View File

@@ -175,7 +175,7 @@ x86_call = """\
jb 1f
negl %%eax
pushl %%eax
call PIC_PLT(__set_errno)
call __set_errno
addl $4, %%esp
1:
"""
@@ -197,7 +197,7 @@ x86_64_call = """\
jb 1f
negl %%eax
movl %%eax, %%edi
call PIC_PLT(__set_errno)
call __set_errno
1:
ret
END(%(func)s)