Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: sysdeps/i386/fpu/s_tanf.S

Issue 3539003: Fix up RET instructions in sysdeps/i386/fpu (Closed) Base URL: ssh://gitrw.chromium.org/nacl-glibc
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sysdeps/i386/fpu/s_tan.S ('k') | sysdeps/i386/fpu/s_tanl.S » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/i386/fpu/s_tanf.S
diff --git a/sysdeps/i386/fpu/s_tanf.S b/sysdeps/i386/fpu/s_tanf.S
index 355dff9c8daba9b14b2815218fb9ac050e53eea1..0c02803aa275ab7aaf2168de0e1ee3e184bfc64a 100644
--- a/sysdeps/i386/fpu/s_tanf.S
+++ b/sysdeps/i386/fpu/s_tanf.S
@@ -14,7 +14,7 @@ ENTRY(__tanf)
testl $0x400,%eax
jnz 1f
fstp %st(0)
- ret
+ NACLRET
1: fldpi
fadd %st(0)
fxch %st(1)
@@ -25,6 +25,6 @@ ENTRY(__tanf)
fstp %st(1)
fptan
fstp %st(0)
- ret
+ NACLRET
END (__tanf)
weak_alias (__tanf, tanf)
« no previous file with comments | « sysdeps/i386/fpu/s_tan.S ('k') | sysdeps/i386/fpu/s_tanl.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698