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

Side by Side Diff: sysdeps/i386/fpu/s_remquof.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_remquo.S ('k') | sysdeps/i386/fpu/s_remquol.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 Ulrich Drepper <drepper@cygnus.com>. 2 * Written by Ulrich Drepper <drepper@cygnus.com>.
3 * Based on e_remainder by J.T. Conklin <jtc@netbsd.org>. 3 * Based on e_remainder by J.T. Conklin <jtc@netbsd.org>.
4 * Public domain. 4 * Public domain.
5 */ 5 */
6 6
7 #include <machine/asm.h> 7 #include <machine/asm.h>
8 #include "bp-sym.h" 8 #include "bp-sym.h"
9 #include "bp-asm.h" 9 #include "bp-asm.h"
10 10
(...skipping 27 matching lines...) Expand all
38 movl QUOP(%esp), %ecx 38 movl QUOP(%esp), %ecx
39 CHECK_BOUNDS_BOTH_WIDE (%ecx, QUOP(%esp), $4) 39 CHECK_BOUNDS_BOTH_WIDE (%ecx, QUOP(%esp), $4)
40 movl DVDND(%esp), %edx 40 movl DVDND(%esp), %edx
41 xorl DVSOR(%esp), %edx 41 xorl DVSOR(%esp), %edx
42 testl $0x80000000, %edx 42 testl $0x80000000, %edx
43 jz 1f 43 jz 1f
44 negl %eax 44 negl %eax
45 1: movl %eax, (%ecx) 45 1: movl %eax, (%ecx)
46 46
47 LEAVE 47 LEAVE
48 » ret 48 » NACLRET
49 END (BP_SYM (__remquof)) 49 END (BP_SYM (__remquof))
50 weak_alias (BP_SYM (__remquof), BP_SYM (remquof)) 50 weak_alias (BP_SYM (__remquof), BP_SYM (remquof))
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_remquo.S ('k') | sysdeps/i386/fpu/s_remquol.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698