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

Side by Side Diff: sysdeps/i386/fpu/s_log1pl.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, 2 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 unified diff | Download patch
« no previous file with comments | « sysdeps/i386/fpu/s_log1pf.S ('k') | sysdeps/i386/fpu/s_logb.S » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Written by J.T. Conklin <jtc@netbsd.org>. 2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Public domain. 3 * Public domain.
4 * 4 *
5 * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>. 5 * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
6 */ 6 */
7 7
8 #include <machine/asm.h> 8 #include <machine/asm.h>
9 9
10 RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $") 10 RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 fnstsw 55 fnstsw
56 sahf 56 sahf
57 jnc 2f 57 jnc 2f
58 58
59 #ifdef PIC 59 #ifdef PIC
60 faddl one@GOTOFF(%edx) 60 faddl one@GOTOFF(%edx)
61 #else 61 #else
62 faddl one 62 faddl one
63 #endif 63 #endif
64 fyl2x 64 fyl2x
65 » ret 65 » NACLRET
66 66
67 2: fyl2xp1 67 2: fyl2xp1
68 » ret 68 » NACLRET
69 69
70 3: jp 4b // in case x is ±Inf 70 3: jp 4b // in case x is ±Inf
71 fstp %st(1) 71 fstp %st(1)
72 fstp %st(1) 72 fstp %st(1)
73 » ret 73 » NACLRET
74 74
75 END (__log1pl) 75 END (__log1pl)
76 weak_alias (__log1pl, log1pl) 76 weak_alias (__log1pl, log1pl)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_log1pf.S ('k') | sysdeps/i386/fpu/s_logb.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698