| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |