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

Side by Side Diff: sysdeps/i386/fpu/s_scalbn.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_rintf.S ('k') | sysdeps/i386/fpu/s_scalbnf.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_scalbn.S,v 1.4 1995/05/09 00:19:06 jtc Exp $") 8 RCSID("$NetBSD: s_scalbn.S,v 1.4 1995/05/09 00:19:06 jtc Exp $")
9 9
10 ENTRY(__scalbn) 10 ENTRY(__scalbn)
11 fildl 12(%esp) 11 fildl 12(%esp)
12 fldl 4(%esp) 12 fldl 4(%esp)
13 fscale 13 fscale
14 fstp %st(1) 14 fstp %st(1)
15 » ret 15 » NACLRET
16 END (__scalbn) 16 END (__scalbn)
17 weak_alias (__scalbn, scalbn) 17 weak_alias (__scalbn, scalbn)
18 strong_alias (__scalbn, __scalbln) 18 strong_alias (__scalbn, __scalbln)
19 weak_alias (__scalbn, scalbln) 19 weak_alias (__scalbn, scalbln)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_rintf.S ('k') | sysdeps/i386/fpu/s_scalbnf.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698