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