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

Unified Diff: sysdeps/i386/fpu/e_atanh.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/e_atan2f.S ('k') | sysdeps/i386/fpu/e_atanhf.S » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/i386/fpu/e_atanh.S
diff --git a/sysdeps/i386/fpu/e_atanh.S b/sysdeps/i386/fpu/e_atanh.S
index 3566ec6effa2eaaeafebe95feddee0c8afaffc4e..218e17837dcc051ad0a7c627458c4473b2468ff7 100644
--- a/sysdeps/i386/fpu/e_atanh.S
+++ b/sysdeps/i386/fpu/e_atanh.S
@@ -88,14 +88,14 @@ ENTRY(__ieee754_atanh)
fyl2xp1 // 0.5*ln2*ld(1+2*|x|+(2*|x|^2)/(1-|x|))
jecxz 3f
fchs // 0.5*ln2*ld(1+2*x+(2*x^2)/(1-x))
-3: ret
+3: NACLRET
.align ALIGNARG(4)
4: faddl MO(one) // 1+2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
fyl2x // 0.5*ln2*ld(1+2*|x|+(2*|x|^2)/(1-|x|))
jecxz 3f
fchs // 0.5*ln2*ld(1+2*x+(2*x^2)/(1-x))
-3: ret
+3: NACLRET
.align ALIGNARG(4)
2: faddl MO(one) // 1+|x| : |x| : 0.5*ln2
@@ -105,12 +105,12 @@ ENTRY(__ieee754_atanh)
fyl2x // 0.5*ln2*ld((1+|x|)/(1-|x|))
jecxz 3f
fchs // 0.5*ln2*ld((1+x)/(1-x))
-3: ret
+3: NACLRET
// x == NaN or ±Inf
5: ja 6f
cmpl $0, 4(%esp)
je 7b
6: fldl 4(%esp)
- ret
+ NACLRET
END(__ieee754_atanh)
« no previous file with comments | « sysdeps/i386/fpu/e_atan2f.S ('k') | sysdeps/i386/fpu/e_atanhf.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698