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

Side by Side Diff: sysdeps/i386/fpu/s_log1pf.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_log1p.S ('k') | sysdeps/i386/fpu/s_log1pl.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 5
6 #include <machine/asm.h> 6 #include <machine/asm.h>
7 7
8 RCSID("$NetBSD: s_log1pf.S,v 1.4 1995/05/09 00:13:05 jtc Exp $") 8 RCSID("$NetBSD: s_log1pf.S,v 1.4 1995/05/09 00:13:05 jtc Exp $")
9 9
10 #ifdef __ELF__ 10 #ifdef __ELF__
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 fnstsw 48 fnstsw
49 sahf 49 sahf
50 jc 2f 50 jc 2f
51 51
52 #ifdef PIC 52 #ifdef PIC
53 fadds one@GOTOFF(%edx) 53 fadds one@GOTOFF(%edx)
54 #else 54 #else
55 fadds one 55 fadds one
56 #endif 56 #endif
57 fyl2x 57 fyl2x
58 » ret 58 » NACLRET
59 59
60 2: fyl2xp1 60 2: fyl2xp1
61 » ret 61 » NACLRET
62 62
63 3: jp 4b // in case x is ±Inf 63 3: jp 4b // in case x is ±Inf
64 fstp %st(1) 64 fstp %st(1)
65 fstp %st(1) 65 fstp %st(1)
66 » ret 66 » NACLRET
67 67
68 END (__log1pf) 68 END (__log1pf)
69 weak_alias (__log1pf, log1pf) 69 weak_alias (__log1pf, log1pf)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_log1p.S ('k') | sysdeps/i386/fpu/s_log1pl.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698