mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 15:00:06 +00:00
5a82c74822
Also, change sources.redhat.com to sourceware.org. This patch was automatically generated by running the following shell script, which uses GNU sed, and which avoids modifying files imported from upstream: sed -ri ' s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g ' \ $(find $(git ls-files) -prune -type f \ ! -name '*.po' \ ! -name 'ChangeLog*' \ ! -path COPYING ! -path COPYING.LIB \ ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \ ! -path manual/texinfo.tex ! -path scripts/config.guess \ ! -path scripts/config.sub ! -path scripts/install-sh \ ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \ ! -path INSTALL ! -path locale/programs/charmap-kw.h \ ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \ ! '(' -name configure \ -execdir test -f configure.ac -o -f configure.in ';' ')' \ ! '(' -name preconfigure \ -execdir test -f preconfigure.ac ';' ')' \ -print) and then by running 'make dist-prepare' to regenerate files built from the altered files, and then executing the following to cleanup: chmod a+x sysdeps/unix/sysv/linux/riscv/configure # Omit irrelevant whitespace and comment-only changes, # perhaps from a slightly-different Autoconf version. git checkout -f \ sysdeps/csky/configure \ sysdeps/hppa/configure \ sysdeps/riscv/configure \ sysdeps/unix/sysv/linux/csky/configure # Omit changes that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines git checkout -f \ sysdeps/powerpc/powerpc64/ppc-mcount.S \ sysdeps/unix/sysv/linux/s390/s390-64/syscall.S # Omit change that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
45 lines
1.7 KiB
C
45 lines
1.7 KiB
C
/* Data definition for log2f.
|
|
Copyright (C) 2017-2019 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include "math_config.h"
|
|
|
|
const struct log2f_data __log2f_data = {
|
|
.tab = {
|
|
{ 0x1.661ec79f8f3bep+0, -0x1.efec65b963019p-2 },
|
|
{ 0x1.571ed4aaf883dp+0, -0x1.b0b6832d4fca4p-2 },
|
|
{ 0x1.49539f0f010bp+0, -0x1.7418b0a1fb77bp-2 },
|
|
{ 0x1.3c995b0b80385p+0, -0x1.39de91a6dcf7bp-2 },
|
|
{ 0x1.30d190c8864a5p+0, -0x1.01d9bf3f2b631p-2 },
|
|
{ 0x1.25e227b0b8eap+0, -0x1.97c1d1b3b7afp-3 },
|
|
{ 0x1.1bb4a4a1a343fp+0, -0x1.2f9e393af3c9fp-3 },
|
|
{ 0x1.12358f08ae5bap+0, -0x1.960cbbf788d5cp-4 },
|
|
{ 0x1.0953f419900a7p+0, -0x1.a6f9db6475fcep-5 },
|
|
{ 0x1p+0, 0x0p+0 },
|
|
{ 0x1.e608cfd9a47acp-1, 0x1.338ca9f24f53dp-4 },
|
|
{ 0x1.ca4b31f026aap-1, 0x1.476a9543891bap-3 },
|
|
{ 0x1.b2036576afce6p-1, 0x1.e840b4ac4e4d2p-3 },
|
|
{ 0x1.9c2d163a1aa2dp-1, 0x1.40645f0c6651cp-2 },
|
|
{ 0x1.886e6037841edp-1, 0x1.88e9c2c1b9ff8p-2 },
|
|
{ 0x1.767dcf5534862p-1, 0x1.ce0a44eb17bccp-2 },
|
|
},
|
|
.poly = {
|
|
-0x1.712b6f70a7e4dp-2, 0x1.ecabf496832ep-2, -0x1.715479ffae3dep-1,
|
|
0x1.715475f35c8b8p0,
|
|
}
|
|
};
|