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

Side by Side Diff: sysdeps/i386/fpu/s_cbrtf.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_cbrt.S ('k') | sysdeps/i386/fpu/s_cbrtl.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 float value. 1 /* Compute cubic root of float 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 popl %ebx 166 popl %ebx
167 cfi_adjust_cfa_offset (-4) 167 cfi_adjust_cfa_offset (-4)
168 cfi_restore (ebx) 168 cfi_restore (ebx)
169 #else 169 #else
170 movl 4(%esp), %eax 170 movl 4(%esp), %eax
171 #endif 171 #endif
172 testl %eax, %eax 172 testl %eax, %eax
173 fstp %st(1) 173 fstp %st(1)
174 jns 4f 174 jns 4f
175 fchs 175 fchs
176 4:» ret 176 4:» NACLRET
177 177
178 /* Return the argument. */ 178 /* Return the argument. */
179 1: flds 4(%esp) 179 1: flds 4(%esp)
180 » ret 180 » NACLRET
181 END(__cbrtf) 181 END(__cbrtf)
182 weak_alias (__cbrtf, cbrtf) 182 weak_alias (__cbrtf, cbrtf)
OLDNEW
« no previous file with comments | « sysdeps/i386/fpu/s_cbrt.S ('k') | sysdeps/i386/fpu/s_cbrtl.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698