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

Side by Side Diff: sysdeps/i386/fpu/s_scalbnl.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_scalbnf.S ('k') | sysdeps/i386/fpu/s_significand.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 * Changes for long double by Ulrich Drepper <drepper@cygnus.com> 3 * Changes for long double by Ulrich Drepper <drepper@cygnus.com>
4 * Public domain. 4 * Public domain.
5 */ 5 */
6 6
7 #include <machine/asm.h> 7 #include <machine/asm.h>
8 8
9 RCSID("$NetBSD: $") 9 RCSID("$NetBSD: $")
10 10
11 ENTRY(__scalbnl) 11 ENTRY(__scalbnl)
12 fildl 16(%esp) 12 fildl 16(%esp)
13 fldt 4(%esp) 13 fldt 4(%esp)
14 fscale 14 fscale
15 fstp %st(1) 15 fstp %st(1)
16 » ret 16 » NACLRET
17 END (__scalbnl) 17 END (__scalbnl)
18 weak_alias (__scalbnl, scalbnl) 18 weak_alias (__scalbnl, scalbnl)
19 strong_alias (__scalbnl, __scalblnl) 19 strong_alias (__scalbnl, __scalblnl)
20 weak_alias (__scalbnl, scalblnl) 20 weak_alias (__scalbnl, scalblnl)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_scalbnf.S ('k') | sysdeps/i386/fpu/s_significand.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698