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

Side by Side Diff: sysdeps/i386/fpu/s_cbrtl.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_cbrtf.S ('k') | sysdeps/i386/fpu/s_ceil.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 long double value. 1 /* Compute cubic root of long 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 popl %ebx 217 popl %ebx
218 cfi_adjust_cfa_offset (-4) 218 cfi_adjust_cfa_offset (-4)
219 cfi_restore (ebx) 219 cfi_restore (ebx)
220 #else 220 #else
221 movl 12(%esp), %eax 221 movl 12(%esp), %eax
222 #endif 222 #endif
223 testl $0x8000, %eax 223 testl $0x8000, %eax
224 fstp %st(1) 224 fstp %st(1)
225 jz 4f 225 jz 4f
226 fchs 226 fchs
227 4:» ret 227 4:» NACLRET
228 228
229 /* Return the argument. */ 229 /* Return the argument. */
230 1: fldt 4(%esp) 230 1: fldt 4(%esp)
231 » ret 231 » NACLRET
232 END(__cbrtl) 232 END(__cbrtl)
233 weak_alias (__cbrtl, cbrtl) 233 weak_alias (__cbrtl, cbrtl)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_cbrtf.S ('k') | sysdeps/i386/fpu/s_ceil.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698