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

Side by Side Diff: sysdeps/i386/fpu/e_remainderl.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/e_remainderf.S ('k') | sysdeps/i386/fpu/e_scalb.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: $") 10 RCSID("$NetBSD: $")
11 11
12 ENTRY(__ieee754_remainderl) 12 ENTRY(__ieee754_remainderl)
13 fldt 16(%esp) 13 fldt 16(%esp)
14 fldt 4(%esp) 14 fldt 4(%esp)
15 1: fprem1 15 1: fprem1
16 fstsw %ax 16 fstsw %ax
17 sahf 17 sahf
18 jp 1b 18 jp 1b
19 fstp %st(1) 19 fstp %st(1)
20 » ret 20 » NACLRET
21 END (__ieee754_remainderl) 21 END (__ieee754_remainderl)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/e_remainderf.S ('k') | sysdeps/i386/fpu/e_scalb.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698