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

Side by Side Diff: sysdeps/i386/fpu/s_cbrt.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_atanf.S ('k') | sysdeps/i386/fpu/s_cbrtf.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 /* Compute cubic root of double value. 1 /* Compute cubic root of double value.
2 Copyright (C) 1997, 2005 Free Software Foundation, Inc. 2 Copyright (C) 1997, 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library. 3 This file is part of the GNU C Library.
4 Contributed by Dirk Alboth <dirka@uni-paderborn.de> and 4 Contributed by Dirk Alboth <dirka@uni-paderborn.de> and
5 Ulrich Drepper <drepper@cygnus.com>, 1997. 5 Ulrich Drepper <drepper@cygnus.com>, 1997.
6 6
7 The GNU C Library is free software; you can redistribute it and/or 7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public 8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either 9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version. 10 version 2.1 of the License, or (at your option) any later version.
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 popl %ebx 189 popl %ebx
190 cfi_adjust_cfa_offset (-4) 190 cfi_adjust_cfa_offset (-4)
191 cfi_restore (ebx) 191 cfi_restore (ebx)
192 #else 192 #else
193 movl 8(%esp), %eax 193 movl 8(%esp), %eax
194 #endif 194 #endif
195 testl %eax, %eax 195 testl %eax, %eax
196 fstp %st(1) 196 fstp %st(1)
197 jns 4f 197 jns 4f
198 fchs 198 fchs
199 4:» ret 199 4:» NACLRET
200 200
201 /* Return the argument. */ 201 /* Return the argument. */
202 1: fldl 4(%esp) 202 1: fldl 4(%esp)
203 » ret 203 » NACLRET
204 END(__cbrt) 204 END(__cbrt)
205 weak_alias (__cbrt, cbrt) 205 weak_alias (__cbrt, cbrt)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_atanf.S ('k') | sysdeps/i386/fpu/s_cbrtf.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698