2020-02-12 21:20:15 +01:00
|
|
|
|
2020-02-12 Sandra Loosemore <sandra@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR libstdc++/79193
|
|
|
|
|
PR libstdc++/88999
|
|
|
|
|
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
2020-01-24 12:24:25 +01:00
|
|
|
|
2020-01-24 Maciej W. Rozycki <macro@wdc.com>
|
|
|
|
|
|
|
|
|
|
* configure.ac: Handle `--with-toolexeclibdir='.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2020-01-01 12:14:37 +01:00
|
|
|
|
2020-01-01 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
2020-01-01 12:51:42 +01:00
|
|
|
|
Update copyright years.
|
|
|
|
|
|
2020-01-01 12:14:37 +01:00
|
|
|
|
* libquadmath.texi: Bump @copying's copyright year.
|
|
|
|
|
|
2019-09-27 23:24:42 +02:00
|
|
|
|
2019-09-27 Maciej W. Rozycki <macro@wdc.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
quadmath.h (M_Eq, [...]): Use two more decimal places.
* quadmath.h (M_Eq, M_LOG2Eq, M_LOG10Eq, M_LN2q, M_LN10q, M_PIq,
M_PI_2q, M_PI_4q, M_1_PIq, M_2_PIq, M_2_SQRTPIq, M_SQRT2q,
M_SQRT1_2q): Use two more decimal places.
From-SVN: r273997
2019-08-02 09:59:19 +02:00
|
|
|
|
2019-08-02 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* quadmath.h (M_Eq, M_LOG2Eq, M_LOG10Eq, M_LN2q, M_LN10q, M_PIq,
|
|
|
|
|
M_PI_2q, M_PI_4q, M_1_PIq, M_2_PIq, M_2_SQRTPIq, M_SQRT2q,
|
|
|
|
|
M_SQRT1_2q): Use two more decimal places.
|
|
|
|
|
|
2019-01-01 12:34:49 +01:00
|
|
|
|
2019-01-01 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
2019-01-01 13:31:55 +01:00
|
|
|
|
Update copyright years.
|
|
|
|
|
|
2019-01-01 12:34:49 +01:00
|
|
|
|
* libquadmath.texi: Bump @copying's copyright year.
|
|
|
|
|
|
2018-12-11 08:45:47 +01:00
|
|
|
|
2018-12-11 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR c/88430
|
|
|
|
|
* quadmath_weak.h (__qmath2): Add __quadmath_throw.
|
|
|
|
|
|
Update libquadmath fmaq from glibc, fix nanq issues.
This patch extends update-quadmath.py to update fmaq from glibc.
The issue in that function was that quadmath-imp.h had a struct in a
union with mant_high and mant_low fields (up to 64-bit) whereas glibc
has mantissa0, mantissa1, mantissa2 and mantissa3 (up to 32-bit). The
patch changes those fields to be the same as in glibc, moving printf /
strtod code that also uses those fields back to closer to the glibc
form. This allows fmaq to be updated automatically from glibc (which
brings in at least one bug fix from glibc from 2015).
nanq was also using the mant_high field name, and had other issues: it
only partly initialized the union from which a value was returned, and
setting mant_high to 1 meant a signaling NaN would be returned rather
than a quiet NaN. This patch fixes those issues as part of updating
it to use the changed interfaces (but does not fix the issue of not
using the argument).
Bootstrapped with no regressions on x86_64-pc-linux-gnu.
* quadmath-imp.h (ieee854_float128): Use mantissa0, mantissa1,
mantissa2 and mantissa3 fields instead of mant_high and mant_low.
Change nan field to ieee_nan.
* update-quadmath.py (update_sources): Also update fmaq.c.
* math/nanq.c (nanq): Use ieee_nan field of union.
Zero-initialize f. Set quiet_nan field.
* printf/flt1282mpn.c, printf/printf_fphex.c, strtod/mpn2flt128.c,
strtod/strtoflt128.c: Use mantissa0, mantissa1, mantissa2 and
mantissa3 fields. Use ieee_nan and quiet_nan field.
* math/fmaq.c: Regenerate from glibc sources with
update-quadmath.py.
From-SVN: r265874
2018-11-07 14:49:03 +01:00
|
|
|
|
2018-11-07 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* quadmath-imp.h (ieee854_float128): Use mantissa0, mantissa1,
|
|
|
|
|
mantissa2 and mantissa3 fields instead of mant_high and mant_low.
|
|
|
|
|
Change nan field to ieee_nan.
|
|
|
|
|
* update-quadmath.py (update_sources): Also update fmaq.c.
|
|
|
|
|
* math/nanq.c (nanq): Use ieee_nan field of union.
|
|
|
|
|
Zero-initialize f. Set quiet_nan field.
|
|
|
|
|
* printf/flt1282mpn.c, printf/printf_fphex.c, strtod/mpn2flt128.c,
|
|
|
|
|
strtod/strtoflt128.c: Use mantissa0, mantissa1, mantissa2 and
|
|
|
|
|
mantissa3 fields. Use ieee_nan and quiet_nan field.
|
|
|
|
|
* math/fmaq.c: Regenerate from glibc sources with
|
|
|
|
|
update-quadmath.py.
|
|
|
|
|
|
Update most of libquadmath/math/ from glibc, automate update (PR libquadmath/68686).
libquadmath sources are mostly based on glibc sources at present, but
derived from them by a manual editing / substitution process and with
subsequent manual merges. The manual effort involved in merges means
they are sometimes incomplete and long-delayed.
Since libquadmath was first created, glibc's support for this format
has undergone significant changes so that it can also be used in glibc
to provide *f128 functions for the _Float128 type from TS 18661-3.
This makes it significantly easier to use it for libquadmath in a more
automated fashion, since glibc has a float128_private.h header that
redefines many identifiers as macros as needed for building *f128
functions.
Simply using float128_private.h directly in libquadmath, with
unmodified glibc sources except for changing function names in that
one header to be *q instead of *f128, would be tricky, given its
dependence on lots of other glibc-internal headers (whereas
libquadmath supports non-glibc systems), and also given how some libm
functions in glibc are built from type-generic templates using a
further set of macros rather than from separate function
implementations for each type.
So instead this patch adds a script update-quadmath.py to convert
glibc sources into libquadmath ones, and the script reads
float128_private.h to identify many of the substitutions it should
make. quadmath-imp.h is updated with various new internal
definitions, taken from glibc as needed; this is the main place
expected to need updating manually when subsequent merges from glibc
are done using the script. No attempt is made to make the script
output match the details of existing formatting, although the
differences are of a size that makes a rough comparison (ignoring
whitespace) possible.
Two new public interfaces are added to libquadmath, exp2q and
issignalingq, at a new QUADMATH_1.2 symbol version, since those
interfaces are used internally by some of the glibc sources being
merged into libquadmath; although there is a new symbol version, no
change however is made to the libtool version in the libtool-version
file. Although there are various other interfaces now in glibc libm
but not in libquadmath, this patch does nothing to add such interfaces
(although adding many of them would in fact be easy to do, given the
script).
One internal file (not providing any public interfaces),
math/isinf_nsq.c, is removed, as no longer used by anything in
libquadmath after the merge.
Conditionals in individual source files on <fenv.h> availability or
features are moved into quadmath-imp.h (providing trivial macro
versions of the functions if real implementations aren't available),
to simplify the substitutions in individual source files. Note
however that I haven't tested for any configurations lacking <fenv.h>,
so further changes could well be needed there.
Two files in libquadmath/math/ are based on glibc sources but not
updated in this patch: fmaq.c and rem_pio2q.c. Both could be updated
after further changes to the script (and quadmath-imp.h as needed); in
the case of rem_pio2q.c, based on two separate glibc source files,
those separate files would naturally be split out into separate
libquadmath source files in the process (as done in this patch with
expq_table.h and tanq_kernel.c, where previously two glibc source
files had been merged into one libquadmath source file). complex.c,
nanq.c and sqrtq.c are not based on glibc sources (though four of the
(trivial) functions in complex.c could readily be replaced by instead
using the four corresponding files from glibc, if desired).
libquadmath also has printf/ and strtod/ sources based on glibc, also
mostly not updated for a long time. Again the script could no doubt
be made to generate those automatically, although that would be a
larger change (effectively some completely separate logic in the
script, not sharing much if anything with the existing code).
Bootstrapped with no regressions on x86_64-pc-linux-gnu.
PR libquadmath/68686
* Makefile.am: (libquadmath_la_SOURCES): Remove math/isinf_nsq.c.
Add math/exp2q.c math/issignalingq.c math/lgammaq_neg.c
math/lgammaq_product.c math/tanq_kernel.c math/tgammaq_product.c
math/casinhq_kernel.c.
* Makefile.in: Regenerate.
* libquadmath.texi (exp2q, issignalingq): Document.
* quadmath-imp.h: Include <errno.h>, <limits.h>, <stdbool.h> and
<fenv.h>.
(HIGH_ORDER_BIT_IS_SET_FOR_SNAN, FIX_FLT128_LONG_CONVERT_OVERFLOW)
(FIX_FLT128_LLONG_CONVERT_OVERFLOW, __quadmath_kernel_tanq)
(__quadmath_gamma_productq, __quadmath_gammaq_r)
(__quadmath_lgamma_negq, __quadmath_lgamma_productq)
(__quadmath_lgammaq_r, __quadmath_kernel_casinhq, mul_splitq)
(math_check_force_underflow_complex, __glibc_likely)
(__glibc_unlikely, struct rm_ctx, SET_RESTORE_ROUNDF128)
(libc_feholdsetround_ctx, libc_feresetround_ctx): New.
(feraiseexcept, fenv_t, feholdexcept, fesetround, feupdateenv)
(fesetenv, fetestexcept, feclearexcept): Define if not supported
through <fenv.h>.
(__quadmath_isinf_nsq): Remove.
* quadmath.h (exp2q, issignalingq): New.
* quadmath.map (QUADMATH_1.2): New.
* quadmath_weak.h (exp2q, issignalingq): New.
* update-quadmath.py: New file.
* math/isinf_nsq.c: Remove file.
* math/casinhq_kernel.c, math/exp2q.c, math/expq_table.h,
math/issignalingq.c, math/lgammaq_neg.c, math/lgammaq_product.c,
math/tanq_kernel.c, math/tgammaq_product.c: New files. Generated
from glibc sources with update-quadmath.py.
* math/acoshq.c, math/acosq.c, math/asinhq.c, math/asinq.c,
math/atan2q.c, math/atanhq.c, math/atanq.c, math/cacoshq.c,
math/cacosq.c, math/casinhq.c, math/casinq.c, math/catanhq.c,
math/catanq.c, math/cbrtq.c, math/ccoshq.c, math/ceilq.c,
math/cexpq.c, math/cimagq.c, math/clog10q.c, math/clogq.c,
math/conjq.c, math/copysignq.c, math/coshq.c, math/cosq.c,
math/cosq_kernel.c, math/cprojq.c, math/crealq.c, math/csinhq.c,
math/csinq.c, math/csqrtq.c, math/ctanhq.c, math/ctanq.c,
math/erfq.c, math/expm1q.c, math/expq.c, math/fabsq.c,
math/fdimq.c, math/finiteq.c, math/floorq.c, math/fmaxq.c,
math/fminq.c, math/fmodq.c, math/frexpq.c, math/hypotq.c,
math/ilogbq.c, math/isinfq.c, math/isnanq.c, math/j0q.c,
math/j1q.c, math/jnq.c, math/ldexpq.c, math/lgammaq.c,
math/llrintq.c, math/llroundq.c, math/log10q.c, math/log1pq.c,
math/log2q.c, math/logbq.c, math/logq.c, math/lrintq.c,
math/lroundq.c, math/modfq.c, math/nearbyintq.c,
math/nextafterq.c, math/powq.c, math/remainderq.c, math/remquoq.c,
math/rintq.c, math/roundq.c, math/scalblnq.c, math/scalbnq.c,
math/signbitq.c, math/sincos_table.c, math/sincosq.c,
math/sincosq_kernel.c, math/sinhq.c, math/sinq.c,
math/sinq_kernel.c, math/tanhq.c, math/tanq.c, math/tgammaq.c,
math/truncq.c, math/x2y2m1q.c: Regenerate from glibc sources with
update-quadmath.py.
From-SVN: r265822
2018-11-06 00:03:55 +01:00
|
|
|
|
2018-11-05 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/68686
|
|
|
|
|
* Makefile.am: (libquadmath_la_SOURCES): Remove math/isinf_nsq.c.
|
|
|
|
|
Add math/exp2q.c math/issignalingq.c math/lgammaq_neg.c
|
|
|
|
|
math/lgammaq_product.c math/tanq_kernel.c math/tgammaq_product.c
|
|
|
|
|
math/casinhq_kernel.c.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
* libquadmath.texi (exp2q, issignalingq): Document.
|
|
|
|
|
* quadmath-imp.h: Include <errno.h>, <limits.h>, <stdbool.h> and
|
|
|
|
|
<fenv.h>.
|
|
|
|
|
(HIGH_ORDER_BIT_IS_SET_FOR_SNAN, FIX_FLT128_LONG_CONVERT_OVERFLOW)
|
|
|
|
|
(FIX_FLT128_LLONG_CONVERT_OVERFLOW, __quadmath_kernel_tanq)
|
|
|
|
|
(__quadmath_gamma_productq, __quadmath_gammaq_r)
|
|
|
|
|
(__quadmath_lgamma_negq, __quadmath_lgamma_productq)
|
|
|
|
|
(__quadmath_lgammaq_r, __quadmath_kernel_casinhq, mul_splitq)
|
|
|
|
|
(math_check_force_underflow_complex, __glibc_likely)
|
|
|
|
|
(__glibc_unlikely, struct rm_ctx, SET_RESTORE_ROUNDF128)
|
|
|
|
|
(libc_feholdsetround_ctx, libc_feresetround_ctx): New.
|
|
|
|
|
(feraiseexcept, fenv_t, feholdexcept, fesetround, feupdateenv)
|
|
|
|
|
(fesetenv, fetestexcept, feclearexcept): Define if not supported
|
|
|
|
|
through <fenv.h>.
|
|
|
|
|
(__quadmath_isinf_nsq): Remove.
|
|
|
|
|
* quadmath.h (exp2q, issignalingq): New.
|
|
|
|
|
* quadmath.map (QUADMATH_1.2): New.
|
|
|
|
|
* quadmath_weak.h (exp2q, issignalingq): New.
|
|
|
|
|
* update-quadmath.py: New file.
|
|
|
|
|
* math/isinf_nsq.c: Remove file.
|
|
|
|
|
* math/casinhq_kernel.c, math/exp2q.c, math/expq_table.h,
|
|
|
|
|
math/issignalingq.c, math/lgammaq_neg.c, math/lgammaq_product.c,
|
|
|
|
|
math/tanq_kernel.c, math/tgammaq_product.c: New files. Generated
|
|
|
|
|
from glibc sources with update-quadmath.py.
|
|
|
|
|
* math/acoshq.c, math/acosq.c, math/asinhq.c, math/asinq.c,
|
|
|
|
|
math/atan2q.c, math/atanhq.c, math/atanq.c, math/cacoshq.c,
|
|
|
|
|
math/cacosq.c, math/casinhq.c, math/casinq.c, math/catanhq.c,
|
|
|
|
|
math/catanq.c, math/cbrtq.c, math/ccoshq.c, math/ceilq.c,
|
|
|
|
|
math/cexpq.c, math/cimagq.c, math/clog10q.c, math/clogq.c,
|
|
|
|
|
math/conjq.c, math/copysignq.c, math/coshq.c, math/cosq.c,
|
|
|
|
|
math/cosq_kernel.c, math/cprojq.c, math/crealq.c, math/csinhq.c,
|
|
|
|
|
math/csinq.c, math/csqrtq.c, math/ctanhq.c, math/ctanq.c,
|
|
|
|
|
math/erfq.c, math/expm1q.c, math/expq.c, math/fabsq.c,
|
|
|
|
|
math/fdimq.c, math/finiteq.c, math/floorq.c, math/fmaxq.c,
|
|
|
|
|
math/fminq.c, math/fmodq.c, math/frexpq.c, math/hypotq.c,
|
|
|
|
|
math/ilogbq.c, math/isinfq.c, math/isnanq.c, math/j0q.c,
|
|
|
|
|
math/j1q.c, math/jnq.c, math/ldexpq.c, math/lgammaq.c,
|
|
|
|
|
math/llrintq.c, math/llroundq.c, math/log10q.c, math/log1pq.c,
|
|
|
|
|
math/log2q.c, math/logbq.c, math/logq.c, math/lrintq.c,
|
|
|
|
|
math/lroundq.c, math/modfq.c, math/nearbyintq.c,
|
|
|
|
|
math/nextafterq.c, math/powq.c, math/remainderq.c, math/remquoq.c,
|
|
|
|
|
math/rintq.c, math/roundq.c, math/scalblnq.c, math/scalbnq.c,
|
|
|
|
|
math/signbitq.c, math/sincos_table.c, math/sincosq.c,
|
|
|
|
|
math/sincosq_kernel.c, math/sinhq.c, math/sinq.c,
|
|
|
|
|
math/sinq_kernel.c, math/tanhq.c, math/tanq.c, math/tgammaq.c,
|
|
|
|
|
math/truncq.c, math/x2y2m1q.c: Regenerate from glibc sources with
|
|
|
|
|
update-quadmath.py.
|
|
|
|
|
|
Update GCC to autoconf 2.69, automake 1.15.1 (PR bootstrap/82856).
This patch updates GCC to use autoconf 2.69 and automake 1.15.1.
(That's not the latest automake version, but it's the one used by
binutils-gdb, with which consistency is desirable, and in any case
seems a useful incremental update that should make a future update to
1.16.1 easier.)
The changes are generally similar to the binutils-gdb ones, and are
copied from there where shared files and directories are involved
(there are some further changes to such shared directories, however,
which I'd expect to apply to binutils-gdb once this patch is in GCC).
Largely, obsolete AC_PREREQ calls are removed, while many
AC_LANG_SOURCE calls are added to avoid warnings from aclocal and
autoconf. Multilib support is no longer included in core automake,
meaning that multilib.am needs copying from automake's contrib
directory into the GCC source tree. Autoconf 2.69 has Go support, so
local copies of that support are removed. I hope the D support will
soon be submitted to upstream autoconf so the local copy of that can
be removed in a future update. Changes to how automake generates
runtest calls mean quotes are removed from RUNTEST definitions in five
lib*/testsuite/Makefile.am files (libatomic, libgomp, libitm,
libphobos, libvtv; some others have RUNTEST definitions without
quotes, which are still OK); libgo and libphobos also get
-Wno-override added to AM_INIT_AUTOMAKE so those overrides of RUNTEST
do not generate automake warnings.
Note that the regeneration did not include regeneration of
fixincludes/config.h.in (attempting such regeneration resulted in all
the USED_FOR_TARGET conditionals disappearing; and I don't see
anything in the fixincludes/ directory that would result in such
conditionals being generated, unlike in the gcc/ directory). Also
note that libvtv/testsuite/other-tests/Makefile.in was not
regenerated; that directory is not listed as a subdirectory for which
Makefile.in gets regenerated by calling "automake" in libvtv/, so I'm
not sure how it's meant to be regenerated.
While I mostly fixed warnings should running aclocal / automake /
autoconf, there were various such warnings from automake in the
libgfortran, libgo, libgomp, liboffloadmic, libsanitizer, libphobos
directories that I did not fix, preferring to leave those to the
relevant subsystem maintainers. Specifically, most of those warnings
were of the following form (example from libgfortran):
Makefile.am:48: warning: source file 'caf/single.c' is in a subdirectory,
Makefile.am:48: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled. For now, the corresponding output
automake: object file(s) will be placed in the top-level directory. However,
automake: this behaviour will change in future Automake versions: they
will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
I think it's best for the relevant maintainers to add subdir-objects
and do any other associated Makefile.am changes needed. In some cases
the paths in the warnings involved ../; I don't know if that adds any
extra complications to the use of subdir-objects.
I've tested this with native, cross and Canadian cross builds. The
risk of any OS-specific issues should I hope be rather lower than if a
libtool upgrade were included (we *should* do such an upgrade at some
point, but it's more complicated - it involves identifying all our
local libtool changes to see if any aren't included in the upstream
version we update to, and reverting an upstream libtool patch that's
inappropriate for use in GCC); I think it would be better to get this
update into GCC so that people can test in different configurations
and we can fix any issues found, rather than to try to get more and
more testing done before it goes in.
top level:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* multilib.am: New file. From automake.
Merge from binutils-gdb:
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
* libtool.m4: Use AC_LANG_SOURCE.
* configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
* ar-lib: New file.
* test-driver: New file.
* configure: Re-generate.
config:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* math.m4, tls.m4: Use AC_LANG_SOURCE.
Merge from binutils-gdb:
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
* override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69.
fixincludes:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ.
* aclocal.m4, configure: Regenerate.
gcc:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. Use single
line for second argument of AC_DEFINE_UNQUOTED.
* doc/install.texi (Tools/packages necessary for modifying GCC):
Update to autoconf 2.69 and automake 1.15.1.
* aclocal.m4, config.in, configure: Regenerate.
gnattools:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ.
* configure: Regenerate.
gotools:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* config/go.m4: Remove file.
* Makefile.am (ACLOCAL_AMFLAGS): Do not use -I ./config.
* configure.ac: Remove AC_PREREQ. Do not include config/go.m4.
* Makefile.in, aclocal.m4, configure: Regenerate.
intl:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
Merge from binutils-gdb:
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
* configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ.
* configure: Re-generate.
* config.h.in: Re-generate.
* aclocal.m4: Re-generate.
libada:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ.
* configure: Regenerate.
libatomic:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* acinclude.m4: Use AC_LANG_SOURCE.
* configure.ac: Remove AC_PREREQ.
* testsuite/Makefile.am (RUNTEST): Remove quotes.
* Makefile.in, aclocal.m4, configure, testsuite/Makefile.in:
Regenerate.
libbacktrace:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE.
* Makefile.in, aclocal.m4, config.h.in, configure: Regenerate.
libcc1:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ.
* Makefile.in, aclocal.m4, configure: Regenerate.
libcpp:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE.
* aclocal.m4, config.in, configure: Regenerate.
libdecnumber:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
Merge from binutils-gdb:
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
* configure.ac: Remove AC_PREREQ.
* configure: Re-generate.
* aclocal.m4.
libffi:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
(AUTOMAKE_OPTIONS): Add info-in-builddir.
(CLEANFILES): Remove doc/libffi.info.
* configure.ac: Remove AC_PREREQ.
* Makefile.in, aclocal.m4, configure, fficonfig.h.in,
include/Makefile.in, man/Makefile.in, testsuite/Makefile.in:
Regenerate.
libgcc:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE.
* configure: Regenerate.
libgfortran:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* configure.ac: Remove AC_PREREQ.
* Makefile.in, aclocal.m4, config.h.in, configure: Regenerate.
libgo [logically part of this change but omitted from the commit]:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* config/go.m4: Remove file.
* config/libtool.m4: Use AC_LANG_SOURCE.
* configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. Use
-Wno-override in AM_INIT_AUTOMAKE call.
* Makefile.in, aclocal.m4, configure, testsuite/Makefile.in:
Regenerate.
libgomp:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am
(AUTOMAKE_OPTIONS): Add info-in-builddir.
(CLEANFILES): Remove libgomp.info.
* configure.ac: Remove AC_PREREQ.
* testsuite/Makefile.am (RUNTEST): Remove quotes.
* Makefile.in, aclocal.m4, configure, testsuite/Makefile.in:
Regenerate.
libhsail-rt:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ.
* Makefile.in, aclocal.m4, configure: Regenerate.
libiberty:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
Merge from binutils-gdb:
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
* configure.ac: Remove AC_PREREQ.
* configure: Re-generate.
* config.in: Re-generate.
libitm:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
(AUTOMAKE_OPTIONS): Add info-in-builddir.
(CLEANFILES): Remove libitm.info.
* configure.ac: Remove AC_PREREQ.
* testsuite/Makefile.am (RUNTEST): Remove quotes.
* Makefile.in, aclocal.m4, configure, testsuite/Makefile.in:
Regenerate.
libobjc:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ.
* aclocal.m4, config.h.in, configure: Regenerate.
liboffloadmic:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* configure.ac: Remove AC_PREREQ.
* plugin/Makefile.am: Include multilib.am.
* plugin/configure.ac: Remove AC_PREREQ.
* Makefile.in, aclocal.m4, configure, plugin/Makefile.in,
plugin/aclocal.m4, plugin/configure: Regenerate.
libphobos:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* configure.ac: Remove AC_PREREQ. Use -Wno-override in
AM_INIT_AUTOMAKE call.
* m4/autoconf.m4: Add extra argument to AC_LANG_DEFINE call.
* m4/druntime/os.m4: Use AC_LANG_SOURCE.
* testsuite/Makefile.am (RUNTEST): Remove quotes.
* Makefile.in, aclocal.m4, configure, libdruntime/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
libquadmath:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
(AUTOMAKE_OPTIONS): Remove 1.8. Add info-in-builddir.
(all-local): Define outside conditional code.
(CLEANFILES): Remove libquadmath.info.
* configure.ac: Remove AC_PREREQ.
* Makefile.in, aclocal.m4, config.h.in, configure: Regenerate.
libsanitizer:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE.
* Makefile.in, aclocal.m4, asan/Makefile.in, configure,
interception/Makefile.in, libbacktrace/Makefile.in,
lsan/Makefile.in, sanitizer_common/Makefile.in, tsan/Makefile.in,
ubsan/Makefile.in: Regenerate.
libssp:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
(AUTOMAKE_OPTIONS): Remove 1.9.5.
* configure.ac: Remove AC_PREREQ. Quote argument to
AC_RUN_IFELSE.
* Makefile.in, aclocal.m4, configure: Regenerate.
libstdc++-v3:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* configure.ac: Remove AC_PREREQ.
* Makefile.in, aclocal.m4, configure, doc/Makefile.in,
include/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
python/Makefile.in, src/Makefile.in, src/c++11/Makefile.in,
src/c++17/Makefile.in, src/c++98/Makefile.in,
src/filesystem/Makefile.in, testsuite/Makefile.in: Regenerate.
libvtv:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
* configure.ac: Remove AC_PREREQ.
* testsuite/Makefile.am (RUNTEST): Remove quotes.
* Makefile.in, aclocal.m4, configure, testsuite/Makefile.in:
Regenerate.
lto-plugin:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE.
* Makefile.in, aclocal.m4, config.h.in, configure: Regenerate.
zlib:
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
* Makefile.am: Include multilib.am.
Merge from binutils-gdb:
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
* configure.ac: Modernize AC_INIT call, remove AC_PREREQ.
* Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add foreign.
* Makefile.in: Re-generate.
* aclocal.m4: Re-generate.
* configure: Re-generate.
From-SVN: r265695
2018-10-31 18:03:16 +01:00
|
|
|
|
2018-10-31 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR bootstrap/82856
|
|
|
|
|
* Makefile.am: Include multilib.am.
|
|
|
|
|
(AUTOMAKE_OPTIONS): Remove 1.8. Add info-in-builddir.
|
|
|
|
|
(all-local): Define outside conditional code.
|
|
|
|
|
(CLEANFILES): Remove libquadmath.info.
|
|
|
|
|
* configure.ac: Remove AC_PREREQ.
|
|
|
|
|
* Makefile.in, aclocal.m4, config.h.in, configure: Regenerate.
|
|
|
|
|
|
2018-04-24 18:45:26 +02:00
|
|
|
|
2018-04-24 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
2018-04-19 09:45:51 +02:00
|
|
|
|
2018-04-19 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
2018-04-18 11:46:58 +02:00
|
|
|
|
2018-04-18 David Malcolm <dmalcolm@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR jit/85384
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2018-02-19 17:25:49 +01:00
|
|
|
|
2018-02-14 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
|
|
|
|
|
|
|
|
|
|
PR target/84148
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2018-01-03 10:17:54 +01:00
|
|
|
|
2018-01-03 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* libquadmath.texi: Bump @copying's copyright year.
|
|
|
|
|
|
|
|
|
|
2017-11-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
|
2017-11-17 23:36:50 +01:00
|
|
|
|
|
|
|
|
|
* Makefile.am: Update AM_CFLAGS.
|
|
|
|
|
* Makefile.in: Regenerate:
|
|
|
|
|
* acinclude.m4: Add enable.m4 and cet.m4.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
* configure.ac: Set CET_FLAGS. Update XCFLAGS.
|
|
|
|
|
|
2017-11-05 10:57:30 +01:00
|
|
|
|
2017-11-05 Tom de Vries <tom@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
PR other/82784
|
|
|
|
|
* printf/gmp-impl.h (MPN_MUL_N_RECURSE): Remove semicolon after
|
|
|
|
|
"do {} while (0)".
|
|
|
|
|
|
2017-09-02 00:10:57 +02:00
|
|
|
|
2017-09-01 Michael Meissner <meissner@linux.vnet.ibm.com>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/81848
|
|
|
|
|
* configure.ac (powerpc*-linux*): Use attribute mode KC to create
|
|
|
|
|
complex __float128 on PowerPC instead of attribute mode TC.
|
|
|
|
|
* quadmath.h (__complex128): Likewise.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
* math/cbrtq.c (CBRT2): Use __float128 not long double.
|
|
|
|
|
(CBRT4): Likewise.
|
|
|
|
|
(CBRT2I): Likewise.
|
|
|
|
|
(CBRT4I): Likewise.
|
|
|
|
|
* math/j0q.c (U0): Likewise.
|
|
|
|
|
* math/sqrtq.c (sqrtq): Don't depend on implicit conversion
|
|
|
|
|
between __float128, instead explicitly convert the __float128
|
|
|
|
|
value to long double because the PowerPC does not allow __float128
|
|
|
|
|
and long double in the same expression.
|
|
|
|
|
|
2017-07-19 21:53:58 +02:00
|
|
|
|
2017-07-19 Gerald Pfeifer <gerald@pfeifer.com>
|
|
|
|
|
|
|
|
|
|
* math/powq.c (powq): Use uint32_t instead of u_int32_t.
|
|
|
|
|
|
2017-07-19 15:12:58 +02:00
|
|
|
|
2017-07-19 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/65757
|
|
|
|
|
* quadmath-imp.h (math_opt_barrier, math_force_eval,
|
|
|
|
|
math_narrow_eval, math_check_force_underflow,
|
|
|
|
|
math_check_force_underflow_nonneg): Define.
|
|
|
|
|
* math/ceilq.c: Backport changes from upstream glibc
|
|
|
|
|
between 2012-11-01 and 2017-07-13.
|
|
|
|
|
* math/remquoq.c: Likewise.
|
|
|
|
|
* math/expq.c: Likewise.
|
|
|
|
|
* math/llroundq.c: Likewise.
|
|
|
|
|
* math/logq.c: Likewise.
|
|
|
|
|
* math/atanq.c: Likewise.
|
|
|
|
|
* math/nearbyintq.c: Likewise.
|
|
|
|
|
* math/scalblnq.c: Likewise.
|
|
|
|
|
* math/finiteq.c: Likewise.
|
|
|
|
|
* math/atanhq.c: Likewise.
|
|
|
|
|
* math/expm1q.c: Likewise.
|
|
|
|
|
* math/sinhq.c: Likewise.
|
|
|
|
|
* math/log10q.c: Likewise.
|
|
|
|
|
* math/rintq.c: Likewise.
|
|
|
|
|
* math/roundq.c: Likewise.
|
|
|
|
|
* math/fmaq.c: Likewise.
|
|
|
|
|
* math/erfq.c: Likewise.
|
|
|
|
|
* math/log2q.c: Likewise.
|
|
|
|
|
* math/lroundq.c: Likewise.
|
|
|
|
|
* math/j1q.c: Likewise.
|
|
|
|
|
* math/scalbnq.c: Likewise.
|
|
|
|
|
* math/truncq.c: Likewise.
|
|
|
|
|
* math/frexpq.c: Likewise.
|
|
|
|
|
* math/sincosq.c: Likewise.
|
|
|
|
|
* math/tanhq.c: Likewise.
|
|
|
|
|
* math/asinq.c: Likewise.
|
|
|
|
|
* math/coshq.c: Likewise.
|
|
|
|
|
* math/j0q.c: Likewise.
|
|
|
|
|
* math/asinhq.c: Likewise.
|
|
|
|
|
* math/floorq.c: Likewise.
|
|
|
|
|
* math/sinq_kernel.c: Likewise.
|
|
|
|
|
* math/powq.c: Likewise.
|
|
|
|
|
* math/hypotq.c: Likewise.
|
|
|
|
|
* math/sincos_table.c: Likewise.
|
|
|
|
|
* math/rem_pio2q.c: Likewise.
|
|
|
|
|
* math/nextafterq.c: Likewise.
|
|
|
|
|
* math/log1pq.c: Likewise.
|
|
|
|
|
* math/sincosq_kernel.c: Likewise.
|
|
|
|
|
* math/tanq.c: Likewise.
|
|
|
|
|
* math/acosq.c: Likewise.
|
|
|
|
|
* math/lrintq.c: Likewise.
|
|
|
|
|
* math/llrintq.c: Likewise.
|
|
|
|
|
|
2017-02-09 11:56:08 +01:00
|
|
|
|
2017-02-09 Gerald Pfeifer <gerald@pfeifer.com>
|
|
|
|
|
|
|
|
|
|
* configure.ac (ACX_BUGURL): Update.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2017-01-17 10:38:48 +01:00
|
|
|
|
2017-01-17 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR other/79046
|
|
|
|
|
* configure.ac: Add GCC_BASE_VER.
|
|
|
|
|
* Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to
|
|
|
|
|
get version from BASE-VER file.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
|
2017-01-01 12:31:28 +01:00
|
|
|
|
2017-01-01 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* libquadmath.texi: Bump @copying's copyright year.
|
|
|
|
|
|
2016-11-15 17:34:02 +01:00
|
|
|
|
2016-11-15 Matthias Klose <doko@ubuntu.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2016-01-04 14:03:35 +01:00
|
|
|
|
2016-01-04 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* libquadmath.texi: Bump @copying's copyright year.
|
|
|
|
|
|
2015-08-09 10:46:52 +02:00
|
|
|
|
2015-08-09 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
|
|
|
|
2016-11-15 17:34:02 +01:00
|
|
|
|
* Makefile.am (libquadmath_la_SOURCES): Add matha/logbq.c.
|
2015-08-09 10:46:52 +02:00
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
* libquadmath.texi: Document logbq.
|
|
|
|
|
* quadmath.h: Add logbq prototype.
|
|
|
|
|
* quadmath.map: Add logbq.
|
|
|
|
|
* quadmath_weak.h: Add logbq prototype.
|
|
|
|
|
* math/logbq.c: New file
|
|
|
|
|
|
2015-05-13 13:27:43 +02:00
|
|
|
|
2015-05-13 Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Regenerated with automake-1.11.6.
|
|
|
|
|
* aclocal.m4: Likewise.
|
|
|
|
|
* configure: Likewise.
|
|
|
|
|
|
2015-01-26 15:57:41 +01:00
|
|
|
|
2015-01-26 Matthias Klose <doko@ubuntu.com>
|
|
|
|
|
|
|
|
|
|
* configure.ac: Move AM_ENABLE_MULTILIB before AC_PROG_CC.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2015-01-05 13:05:46 +01:00
|
|
|
|
2015-01-05 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* libquadmath.texi: Bump @copying's copyright year.
|
|
|
|
|
|
2014-11-21 17:49:17 +01:00
|
|
|
|
2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR bootstrap/63784
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
2014-11-11 21:25:18 +01:00
|
|
|
|
2014-11-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
|
|
|
|
|
|
|
|
PR target/63610
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2014-10-21 10:59:17 +02:00
|
|
|
|
2014-10-21 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/55821
|
|
|
|
|
* Makefile.am: Unconditionally define libquadmath_TEXINFOS.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
|
2014-10-09 09:40:39 +02:00
|
|
|
|
2014-10-09 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/55821
|
|
|
|
|
* Makefile.am: Conditionally define info_TEXINFOS and
|
|
|
|
|
libquadmath_TEXINFOS.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
|
2014-10-08 17:33:41 +02:00
|
|
|
|
2014-10-08 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/63487
|
|
|
|
|
* libquadmath.texi (sincosq): Fix typo.
|
|
|
|
|
|
2014-01-02 22:25:41 +01:00
|
|
|
|
2014-01-02 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
* libquadmath.texi: Bump @copying's copyright year.
|
|
|
|
|
|
2013-12-04 11:49:14 +01:00
|
|
|
|
2013-12-04 Richard Sandiford <rdsandiford@googlemail.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.am (AM_CPPFLAGS): Define.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
* printf/gmp-impl.h: Remove path from longlong.h include.
|
|
|
|
|
|
2013-09-20 11:47:52 +02:00
|
|
|
|
2013-09-20 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2013-03-07 08:53:10 +01:00
|
|
|
|
2013-03-06 Shakthi Kannan <shakthimaan@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/55473
|
|
|
|
|
* quadmath.h: Add 'extern "C"' block for C++ use.
|
|
|
|
|
|
2013-02-19 22:50:10 +01:00
|
|
|
|
2013-02-19 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/56379
|
|
|
|
|
* strtod/strtod_l.c (mpn_lshift_1): Rewritten as function-like
|
|
|
|
|
macro.
|
|
|
|
|
|
2013-02-17 13:57:51 +01:00
|
|
|
|
2013-02-17 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
* math/cacoshq.c (cacoshq): Call signbitq instead of signbit.
|
|
|
|
|
|
2013-02-06 23:03:54 +01:00
|
|
|
|
2013-02-06 Richard Sandiford <rdsandiford@googlemail.com>
|
|
|
|
|
|
|
|
|
|
Revert previous patch.
|
|
|
|
|
|
2013-02-03 18:49:30 +01:00
|
|
|
|
2013-02-03 Richard Sandiford <rdsandiford@googlemail.com>
|
|
|
|
|
|
|
|
|
|
Update copyright years.
|
|
|
|
|
|
2013-01-22 09:23:32 +01:00
|
|
|
|
2013-01-22 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/56072
|
|
|
|
|
* libquadmath.texi (M_PI_2q, M_PI_4q): Fix up description.
|
|
|
|
|
|
2012-12-13 13:35:56 +01:00
|
|
|
|
2012-12-13 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* math/cbrtq.c (cbrtq): Use Q suffixed floating point constants
|
|
|
|
|
instead of L suffixed ones.
|
|
|
|
|
* math/fmaq.c (fmaq): Likewise.
|
|
|
|
|
* math/rintq.c (TWO112): Likewise.
|
|
|
|
|
|
2012-12-03 17:16:28 +01:00
|
|
|
|
2012-12-03 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
* strtod/strtod_l.c (___STRTOF_INTERNAL): Fix exponent
|
|
|
|
|
reading.
|
|
|
|
|
|
2012-11-25 20:59:07 +01:00
|
|
|
|
2012-11-25 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/55462
|
|
|
|
|
* strtod/strtod_l.c (round_and_return): Use HAVE_FENV_H
|
|
|
|
|
instead of nonexisting HAVE_GET_ROUNDING_MODE.
|
|
|
|
|
|
2012-11-24 02:12:59 +01:00
|
|
|
|
2012-11-23 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR bootstrap/55455
|
|
|
|
|
* quadmath-rounding-mode.h (get_rounding_mode): Don't pass
|
|
|
|
|
void to fegetround.
|
|
|
|
|
|
2012-11-23 23:11:40 +01:00
|
|
|
|
2012-11-23 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* quadmath-rounding-mode.h: New.
|
|
|
|
|
* printf/fpioconst.c: Update from GLIBC. Fix strtod rounding.
|
|
|
|
|
* printf/fpioconst.h: Ditto.
|
|
|
|
|
* printf/printf_fp.c (__quadmath_printf_fp): Update from GLIBC.
|
|
|
|
|
Make printf respect the rounding mode for decimal output.
|
|
|
|
|
* printf/printf_fphex.c (__quadmath_printf_fphex): Update from
|
|
|
|
|
GLIBC. Make printf respect the rounding mode for hex output.
|
|
|
|
|
* strtod/strtod_l.c: Update from GLIBC. Make strtod respect the
|
|
|
|
|
rounding mode. Fix strtod handling of underflow.
|
|
|
|
|
|
2012-11-22 00:55:29 +01:00
|
|
|
|
2012-11-22 David S. Miller <davem@davemloft.net>
|
|
|
|
|
Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* math/atanq.c (atanq): Update from GLIBC. Handle tiny and
|
|
|
|
|
very large arguments properly.
|
|
|
|
|
* math/j0q.c (y0q): Update from GLIBC. Avoid arithmetic
|
|
|
|
|
underflow when 'x' is very small.
|
|
|
|
|
* math/j1q.c (y1q): Ditto.
|
|
|
|
|
* math/log1pq.c (log1pq): Update from GLIBC. Saturate
|
|
|
|
|
nonzero exponents with absolute value below 0x1p-128 to
|
|
|
|
|
+/- 0x1p-128.
|
|
|
|
|
* math/powq.c (powq): Update from GLIBC. If xm1 is
|
|
|
|
|
smaller than LDBL_EPSILON/2.0L, just return xm1.
|
|
|
|
|
|
2012-11-21 14:46:34 +01:00
|
|
|
|
2012-11-21 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/55225
|
|
|
|
|
* math/lgammaq.c (lgammaq): Use local variable if
|
|
|
|
|
math.h does not provide signgam.
|
|
|
|
|
* acinclude.m4 (LIBQUAD_CHECK_MATH_H_SIGNGAM): New check.
|
|
|
|
|
* configure.ac: Use it.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
* config.h.in: Regenerate.
|
|
|
|
|
|
2012-11-15 18:22:21 +01:00
|
|
|
|
2012-11-15 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* math/fmaq.c (fmaq): Merge from GLIBC. Fix fma
|
|
|
|
|
underflows with small x * y; Fix overflow results
|
|
|
|
|
outside round-to-nearest mode; make use of Dekker
|
|
|
|
|
and Knuth algorithms use round-to-nearest.
|
|
|
|
|
|
2012-11-02 19:08:05 +01:00
|
|
|
|
2012-11-01 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
* math/fmaq.c (fmaq): Fix build.
|
|
|
|
|
|
2012-11-02 17:59:30 +01:00
|
|
|
|
2012-11-01 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* math/fmaq.c (fmaq): Merge from GLIBC. Handle cases
|
|
|
|
|
with small x * y using scaling, not as x * y + z.
|
|
|
|
|
* math/lgammaq.c (lgammaq): Fix signgam handling.
|
|
|
|
|
|
Makefile.am (libquadmath_la_SOURCES): Add new math/* files.
2012-11-01 Tobias Burnus <burnus@net-b.de>
* Makefile.am (libquadmath_la_SOURCES): Add new math/* files.
* Makefile.in: Regenerated.
* math/acoshq.c: Update comment.
* math/acosq.c: Ditto.
* math/asinhq.c: Ditto.
* math/asinq.c: Ditto.
* math/atan2q.c: Ditto.
* math/atanhq.c: Ditto.
* math/ceilq.c: Ditto.
* math/copysignq.c: Ditto.
* math/cosq.c: Ditto.
* math/coshq.c: Ditto.
* math/erfq.c: Ditto.
* math/fabsq.c: Ditto.
* math/finiteq.c: Ditto.
* math/floorq.c: Ditto.
* math/fmodq.c: Ditto.
* math/frexpq.c: Ditto.
* math/isnanq.c: Ditto.
* math/j0q.c: Ditto.
* math/j1q.c: Ditto.
* math/ldexpq.c: Ditto.
* math/llroundq.c: Ditto.
* math/log10q.c: Ditto.
* math/log1pq.c: Ditto.
* math/log2q.c: Ditto.
* math/logq.c: Ditto.
* math/lroundq.c: Ditto.
* math/modfq.c: Ditto.
* math/nextafterq.c: Ditto.
* math/powq.c: Ditto.
* math/rem_pio2q.c: Ditto.
* math/remainderq.c: Ditto.
* math/rintq.c: Ditto.
* math/roundq.c: Ditto.
* math/scalblnq.c: Ditto.
* math/scalbnq.c: Ditto.
* math/sincosq_kernel.c: Ditto.
* math/sinq.c: Ditto.
* math/tanq.c: Ditto.
* math/expq.c: Ditto.
(__expq_table, expq): Renamed local array from __expl_table.
* math/cosq_kernel.c (__quadmath_kernel_cosq): Fix sign
* handling.
* math/cacoshq.c: Changes from GLIBC; fix returned sign.
* math/casinhq.c: Changes from GLIBC to fix special-case.
* math/cbrtq.c: Use modified GLIBC version.
* math/complex.c (ccoshd, cexpq, clog10q, clogq, csinhq, csinq,
ctanhq, ctanq): Moved to separates files.
(mult_c128, div_c128): Removed no longer needed functions.
(cexpiq): Call sincosq instead of sinq and cosq.
(cosq): Call cosh(-re,im) instead of cosq/sinq/sinh/cosh.
* math/ccoshq.c (ccoshq): New file, moved from complex.c and
modified based on GLIBC.
* math/cexpq.c (cexp): Ditto.
* math/clog10q.c (clog10q): Ditto.
* math/clogq.c (clogq): Ditto.
* math/csinhq.c: Ditto.
* math/csinq.c: Ditto.
* math/csqrtq.c: Ditto.
* math/ctanhq.c: Ditto.
* math/ctanq.c: Ditto.
* math/fmaq.c (fmaq): Port TININESS_AFTER_ROUNDING handling
from GLIBC.
* math/ilogbq.c (ilogbq): Add errno = EDOM handling.
* math/isinf_nsq.c (__quadmath_isinf_nsq): New file, ported
from GLIBC.
* math/lgammaq.c (lgammaq): Add signgam handling.
* math/sinhq.c (sinhq): Fix sign handling.
* math/sinq_kernel.c (__quadmath_kernel_sinq): Ditto.
* math/tgammaq.c (tgammaq): Ditto.
* math/x2y2m1q.c: New file.
* quadmath-imp.h (TININESS_AFTER_ROUNDING): New define.
(__quadmath_x2y2m1q, __quadmath_isinf_nsq): New prototypes.
From-SVN: r193063
2012-11-01 17:14:42 +01:00
|
|
|
|
2012-11-01 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
* Makefile.am (libquadmath_la_SOURCES): Add new math/* files.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
* math/acoshq.c: Update comment.
|
|
|
|
|
* math/acosq.c: Ditto.
|
|
|
|
|
* math/asinhq.c: Ditto.
|
|
|
|
|
* math/asinq.c: Ditto.
|
|
|
|
|
* math/atan2q.c: Ditto.
|
|
|
|
|
* math/atanhq.c: Ditto.
|
|
|
|
|
* math/ceilq.c: Ditto.
|
|
|
|
|
* math/copysignq.c: Ditto.
|
|
|
|
|
* math/cosq.c: Ditto.
|
|
|
|
|
* math/coshq.c: Ditto.
|
|
|
|
|
* math/erfq.c: Ditto.
|
|
|
|
|
* math/fabsq.c: Ditto.
|
|
|
|
|
* math/finiteq.c: Ditto.
|
|
|
|
|
* math/floorq.c: Ditto.
|
|
|
|
|
* math/fmodq.c: Ditto.
|
|
|
|
|
* math/frexpq.c: Ditto.
|
|
|
|
|
* math/isnanq.c: Ditto.
|
|
|
|
|
* math/j0q.c: Ditto.
|
|
|
|
|
* math/j1q.c: Ditto.
|
|
|
|
|
* math/ldexpq.c: Ditto.
|
|
|
|
|
* math/llroundq.c: Ditto.
|
|
|
|
|
* math/log10q.c: Ditto.
|
|
|
|
|
* math/log1pq.c: Ditto.
|
|
|
|
|
* math/log2q.c: Ditto.
|
|
|
|
|
* math/logq.c: Ditto.
|
|
|
|
|
* math/lroundq.c: Ditto.
|
|
|
|
|
* math/modfq.c: Ditto.
|
|
|
|
|
* math/nextafterq.c: Ditto.
|
|
|
|
|
* math/powq.c: Ditto.
|
|
|
|
|
* math/rem_pio2q.c: Ditto.
|
|
|
|
|
* math/remainderq.c: Ditto.
|
|
|
|
|
* math/rintq.c: Ditto.
|
|
|
|
|
* math/roundq.c: Ditto.
|
|
|
|
|
* math/scalblnq.c: Ditto.
|
|
|
|
|
* math/scalbnq.c: Ditto.
|
|
|
|
|
* math/sincosq_kernel.c: Ditto.
|
|
|
|
|
* math/sinq.c: Ditto.
|
|
|
|
|
* math/tanq.c: Ditto.
|
|
|
|
|
* math/expq.c: Ditto.
|
|
|
|
|
(__expq_table, expq): Renamed local array from __expl_table.
|
|
|
|
|
* math/cosq_kernel.c (__quadmath_kernel_cosq): Fix sign handling.
|
|
|
|
|
* math/cacoshq.c: Changes from GLIBC; fix returned sign.
|
|
|
|
|
* math/casinhq.c: Changes from GLIBC to fix special-case.
|
|
|
|
|
* math/cbrtq.c: Use modified GLIBC version.
|
|
|
|
|
* math/complex.c (ccoshd, cexpq, clog10q, clogq, csinhq, csinq,
|
|
|
|
|
ctanhq, ctanq): Moved to separates files.
|
|
|
|
|
(mult_c128, div_c128): Removed no longer needed functions.
|
|
|
|
|
(cexpiq): Call sincosq instead of sinq and cosq.
|
|
|
|
|
(cosq): Call cosh(-re,im) instead of cosq/sinq/sinh/cosh.
|
|
|
|
|
* math/ccoshq.c (ccoshq): New file, moved from complex.c and
|
|
|
|
|
modified based on GLIBC.
|
|
|
|
|
* math/cexpq.c (cexp): Ditto.
|
|
|
|
|
* math/clog10q.c (clog10q): Ditto.
|
|
|
|
|
* math/clogq.c (clogq): Ditto.
|
|
|
|
|
* math/csinhq.c: Ditto.
|
|
|
|
|
* math/csinq.c: Ditto.
|
|
|
|
|
* math/csqrtq.c: Ditto.
|
|
|
|
|
* math/ctanhq.c: Ditto.
|
|
|
|
|
* math/ctanq.c: Ditto.
|
|
|
|
|
* math/fmaq.c (fmaq): Port TININESS_AFTER_ROUNDING handling
|
|
|
|
|
from GLIBC.
|
|
|
|
|
* math/ilogbq.c (ilogbq): Add errno = EDOM handling.
|
|
|
|
|
* math/isinf_nsq.c (__quadmath_isinf_nsq): New file, ported
|
|
|
|
|
from GLIBC.
|
|
|
|
|
* math/lgammaq.c (lgammaq): Add signgam handling.
|
|
|
|
|
* math/sinhq.c (sinhq): Fix sign handling.
|
|
|
|
|
* math/sinq_kernel.c (__quadmath_kernel_sinq): Ditto.
|
|
|
|
|
* math/tgammaq.c (tgammaq): Ditto.
|
|
|
|
|
* math/x2y2m1q.c: New file.
|
|
|
|
|
* quadmath-imp.h (TININESS_AFTER_ROUNDING): New define.
|
|
|
|
|
(__quadmath_x2y2m1q, __quadmath_isinf_nsq): New prototypes.
|
|
|
|
|
|
2012-10-31 16:46:59 +01:00
|
|
|
|
2012-10-31 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
David S. Miller <davem@davemloft.net>
|
|
|
|
|
Ulrich Drepper <drepper@redhat.com>
|
|
|
|
|
Marek Polacek <polacek@redhat.com>:
|
|
|
|
|
Petr Baudis <pasky@suse.cz>
|
|
|
|
|
|
|
|
|
|
* math/complex.c (csqrtq): NaN and INF fixes.
|
|
|
|
|
* math/sqrtq.c (sqrt): NaN, INF and < 0 fixes.
|
|
|
|
|
* math/expm1q.c (expm1q): Changes from GLIBC. Use expq for
|
|
|
|
|
large parameters. Fix errno for boundary conditions.
|
|
|
|
|
* math/finiteq.c (finiteq): Add comment.
|
|
|
|
|
* math/fmaq.c (fmaq): Changes from GLIBC. Fix missing underflows
|
|
|
|
|
and bad results for some subnormal results. Fix sign of inexact
|
|
|
|
|
zero return. Fix sign of exact zero return.
|
|
|
|
|
Ensure additions are not scheduled after fetestexcept.
|
|
|
|
|
* math/jnq.c (jnq): Changes from GLIBC. Set up errno properly
|
|
|
|
|
for ynq. Fix jnq precision.
|
|
|
|
|
* math/nearbyintq.c (nearbyintq): Changes from GLIBC. Do not
|
|
|
|
|
manipulate bits before adding and subtracting TWO112[sx].
|
|
|
|
|
* math/rintq.c (rintq): Ditto.
|
|
|
|
|
* math/scalbnq.c (scalbnq): Changes from GLIBC. Fix integer
|
|
|
|
|
overflow.
|
|
|
|
|
|
2012-09-15 01:39:34 +02:00
|
|
|
|
2012-09-14 David Edelsohn <dje.gcc@gmail.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
2012-05-31 20:51:27 +02:00
|
|
|
|
2012-05-29 Benjamin Kosnik <bkoz@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR libstdc++/51007
|
|
|
|
|
* configure.ac: Allow gnu, gnu* variants for --enable-symvers argument.
|
|
|
|
|
* configure: Regenerated.
|
2012-09-15 01:39:34 +02:00
|
|
|
|
|
2012-05-17 00:11:18 +02:00
|
|
|
|
2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
2011-11-21 20:22:35 +01:00
|
|
|
|
2011-11-21 Andreas Tobler <andreast@fgznet.ch>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2011-11-07 23:03:51 +01:00
|
|
|
|
2011-11-07 Kai Tietz <ktietz@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR target/51007
|
|
|
|
|
* quadmath-imp.h (ieee854_float128): Adjust
|
|
|
|
|
for ms-bitfield layout.
|
|
|
|
|
|
Move libgcc2 to toplevel libgcc
toplevel:
* Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
* Makefile.in: Regenerate.
config:
* mh-interix (LIBGCC2_DEBUG_CFLAGS): Remove.
gcc:
* Makefile.in (LIBGCC2_DEBUG_CFLAGS LIBGCC2_CFLAGS)
(LIBGCC2_INCLUDES, TARGET_LIBGCC2_CFLAGS, LIB2FUNCS_EXTRA)
(LIB2FUNCS_STATIC_EXTRA, LIB2FUNCS_EXCLUDE, T, T_TARGET)
(INCLUDES_FOR_TARGET): Remove.
(LIBGCC2_CFLAGS): Don't export.
(LIB2FUNCS_ST, LIB2_DIVMOD_FUNCS, LIB2ADD, LIB2ADD_ST, srcdirify):
Remove.
(libgcc-support): Remove $(LIB2ADD), $(LIB2ADD_ST) dependencies.
(libgcc.mvars): Likewise.
Don't emit LIB2FUNCS_ST, LIB2FUNCS_EXCLUDE, LIB2ADD, LIB2ADD_ST,
LIB2_SIDITI_CONV_FUNCS, LIB2_DIVMOD_FUNCS, LIBGCC2_CFLAGS,
TARGET_LIBGCC2_CFLAGS.
Emit GTHREAD_FLAGS.
* libgcc2.c, libgcc2.h, gbl-ctors.h, longlong.h: Move to ../libgcc.
* config/darwin-64.c: Move to ../libgcc/config.
* config/divmod.c, config/floatunsidf.c, config/floatunsisf.c,
config/floatunsitf.c, config/floatunsixf.c, config/udivmod.c,
config/udivmodsi4.c: Move to ../libgcc/config.
* config/gthr-posix.c: Move to ../libgcc/config/alpha.
* config/memcmp.c, config/memcpy.c, config/memmove.c,
config/memset.c: Move to ../libgcc/config.
* config/t-darwin (TARGET_LIBGCC2_CFLAGS): Remove.
* config/t-freebsd: Remove.
* config/t-freebsd-thread: Move to ../libgcc/config.
* config/t-libgcc-pic: Move to ../libgcc/config.
* config/t-libunwind (TARGET_LIBGCC2_CFLAGS): Remove.
* config/t-linux: Remove.
* config/t-lynx (TARGET_LIBGCC2_CFLAGS, LIBGCC, INSTALL_LIBGCC):
Remove
* config/t-openbsd-thread: Move to ../libgcc/config.
* config/t-rtems (LIBGCC2_INCLUDES): Remove.
* config/t-sol2 (TARGET_LIBGCC2_CFLAGS): Remove.
* config/t-svr4: Remove.
* config/t-vxworks (LIBGCC, INSTALL_LIBGCC, TARGET_LIBGCC2_CFLAGS)
(LIBGCC2_DEBUG_CFLAGS, LIB2FUNCS_EXTRA, LIBGCC2_INCLUDES): Remove.
* config/vxlib.c, config/vxlib-tls.c: Move to ../libgcc/config.
* config/alpha/qrnnd.asm: Move to ../libgcc/config/alpha/qrnnd.S.
* config/alpha/t-alpha, config/alpha/t-ieee: Remove.
* config/alpha/t-vms (LIB2FUNCS_EXTRA, LIBGCC, INSTALL_LIBGCC):
Remove.
* config/alpha/vms-gcc_shell_handler.c: Move to ../libgcc/config/alpha.
* config/arm/bpabi.c, config/arm/unaligned-funcs.c,
config/arm/fp16.c, config/arm/linux-atomic.c,
config/arm/linux-atomic-64bit.c: Move to ../libgcc/config/arm.
* config/arm/t-arm-elf (LIBGCC, INSTALL_LIBGCC)
(TARGET_LIBGCC2_CFLAGS): Remove.
* config/arm/t-bpabi, config/arm/t-linux: Remove.
* config/arm/t-linux-eabi (TARGET_LIBGCC2_CFLAGS)
(LIB2FUNCS_STATIC_EXTRA): Remove.
* config/arm/t-netbsd: Remove.
* config/arm/t-strongarm-elf (LIBGCC, INSTALL_LIBGCC)
(TARGET_LIBGCC2_CFLAGS): Remove.
* config/arm/t-symbian (LIB2FUNCS_STATIC_EXTRA): Remove.
* config/arm/t-wince-pe (LIBGCC, INSTALL_LIBGCC)
(TARGET_LIBGCC2_CFLAGS): Remove.
* config/avr/t-avr (LIB2FUNCS_EXCLUDE, TARGET_LIBGCC2_CFLAGS)
(LIBGCC, INSTALL_LIBGCC): Remove.
* config/bfin/t-bfin-elf (TARGET_LIBGCC2_CFLAGS): Remove.
* config/bfin/t-bfin-linux: Likewise.
* config/bfin/t-bfin-uclinux: Likewise.
* config/c6x/eqd.c, config/c6x/eqf.c, config/c6x/ged.c,
config/c6x/gef.c, config/c6x/gtd.c, config/c6x/gtf.c,
config/c6x/led.c, config/c6x/lef.c, config/c6x/ltd.c,
config/c6x/ltf.c: Move to ../libgcc/config/c6x.
* config/c6x/t-c6x-elf (LIB2FUNCS_EXCLUDE, LIB2FUNCS_EXTRA):
Remove.
* config/c6x/t-c6x-uclinux (TARGET_LIBGCC2_CFLAGS): Remove.
* config/cris/arit.c: Move to ../libgcc/config/cris.
* config/cris/cris_abi_symbol.c: Remove.
* config/cris/cris.h: Remove obsolete comment.
* config/cris/mulsi3.asm: Move to ../libgcc/config/cris/mulsi3.S.
* config/cris/t-cris (LIB2FUNCS_EXTRA, CRIS_LIB1CSRC)
($(LIB2FUNCS_EXTRA)): Remove.
* config/cris/t-elfmulti (LIB2FUNCS_STATIC_EXTRA, INSTALL_LIBGCC)
(LIBGCC): Remove.
* config/cris/t-linux (TARGET_LIBGCC2_CFLAGS): Remove.
* config/fr30/t-fr30: Remove.
* config/frv/cmovd.c, config/frv/cmovh.c, config/frv/cmovw.c,
config/frv/modi.c, config/frv/uitod.c, config/frv/uitof.c,
config/frv/ulltod.c, config/frv/ulltof.c, config/frv/umodi.c: Move
to ../libgcc/config/frv.
* config/frv/t-frv (LIB2FUNCS_EXTRA, TARGET_LIBGCC2_CFLAGS)
(cmovh.c, cmovw.c, cmovd.c, modi.c, umodi.c, uitof.c, uitod.c)
(ulltof.c, LIBGCC, INSTALL_LIBGCC): Remove.
* config/frv/t-linux (TARGET_LIBGCC2_CFLAGS): Remove.
* config/h8300/clzhi2.c, config/h8300/ctzhi2.c,
config/h8300/fixunssfsi.c, config/h8300/parityhi2.c,
config/h8300/popcounthi2.c: Move to ../libgcc/config/h8300.
* config/h8300/t-h8300 (LIB2FUNCS_EXTRA, TARGET_LIBGCC2_CFLAGS)
(LIBGCC, INSTALL_LIBGCC): Remove.
* config/i386/gthr-win32.c: Move to ../libgcc/config/i386.
* config/i386/t-cygming (LIBGCC2_INCLUDES): Remove.
* config/i386/t-cygwin: Remove.
* config/i386/t-darwin (LIB2_SIDITI_CONV_FUNCS, LIB2FUNCS_EXTRA)
(LIB2FUNCS_EXCLUDE): Remove.
* config/i386/t-darwin64 (LIB2_SIDITI_CONV_FUNCS, LIB2FUNCS_EXTRA)
(LIBGCC, INSTALL_LIBGCC): Remove.
* config/i386/t-gthr-win32: Move to ../libgcc/config/i386.
* config/i386/t-linux64 (LIBGCC, INSTALL_LIBGCC): Remove.
* config/i386/t-mingw-w32: Likewise.
* config/i386/t-mingw-w64: Likewise.
* config/i386/t-openbsd: Likewise.
* config/i386/t-nto: Remove.
* config/ia64/quadlib.c: Move to ../libgcc/config/ia64.
* config/ia64/t-hpux (LIBGCC, INSTALL_LIBGCC, LIB2FUNCS_EXTRA)
(quadlib.c): Remove.
* config/ia64/t-ia64: Remove comment.
* config/iq2000/lib2extra-funcs.c: Move to
../libgcc/config/iq2000/lib2funcs.c.
* config/iq2000/t-iq2000: Remove.
* config/m32c/m32c-lib2.c: Move to ../libgcc/config/m32c/lib2funcs.c.
* config/m32c/m32c-lib2-trapv.c: Move to ../libgcc/config/m32c/trapv.c.
* config/m32r/t-linux (TARGET_LIBGCC2_CFLAGS): Remove.
* config/m32c/t-m32c (LIB2FUNCS_EXTRA): Remove.
* config/m32r/t-m32r (TARGET_LIBGCC2_CFLAGS, LIBGCC)
(INSTALL_LIBGCC): Remove.
* config/m68k/fpgnulib.c: Move to ../libgcc/config/m68k.
* config/m68k/t-floatlib: Remove.
* config/m68k/t-mlibs (LIBGCC, INSTALL_LIBGCC): Remove.
* config/mcore/t-mcore (TARGET_LIBGCC2_CFLAGS): Remove.
Fix typo.
(LIBGCC, INSTALL_LIBGCC): Remove.
* config/mep/mep-lib2.c: Move to ../libgcc/config/mep/lib2funcs.c.
* config/mep/mep-tramp.c: Move to ../libgcc/config/mep/tramp.c.
* config/mep/t-mep (LIB2FUNCS_EXTRA): Remove.
* config/mips/t-elf (TARGET_LIBGCC2_CFLAGS, LIBGCC)
(INSTALL_LIBGCC): Remove.
* config/mips/t-isa3264: Likewise.
* config/mips/t-mips (LIB2_SIDITI_CONV_FUNCS): Remove.
* config/mips/t-r3900 (TARGET_LIBGCC2_CFLAGS, LIBGCC)
(INSTALL_LIBGCC): Remove.
* config/mips/t-sde (LIBGCC, INSTALL_LIBGCC): Remove.
* config/mips/t-sr71k (TARGET_LIBGCC2_CFLAGS, LIBGCC)
(INSTALL_LIBGCC): Remove.
* config/mips/t-vr (TARGET_LIBGCC2_CFLAGS)
(LIB2FUNCS_STATIC_EXTRA): Remove.
* config/mips/vr4120-div.S: Move to ../libgcc/config/mips.
* config/mmix/t-mmix (TARGET_LIBGCC2_CFLAGS): Remove.
* config/mn10300/t-mn10300 (LIBGCC, INSTALL_LIBGCC): Remove.
* config/pa/fptr.c, config/pa/linux-atomic.c: Move to
../libgcc/config/pa.
* config/pa/lib2funcs.asm: Move to ../libgcc/config/pa/lib2funcs.S.
* config/pa/quadlib.c: Move to ../libgcc/config/pa.
* config/pa/t-dce-thr (LIBGCC, INSTALL_LIBGCC): Remove.
* config/pa/t-linux, config/pa/t-linux64: Remove.
* config/pa/t-pa-hpux, config/pa/t-pa-hpux10,
config/pa/t-pa-hpux11, config/pa/t-pa64: Remove.
* config/pdp11/t-pdp11 (TARGET_LIBGCC2_CFLAGS, LIB2FUNCS_EXTRA):
Remove.
* config/picochip/libgccExtras: Move to ../libgcc/config/picochip.
* config/picochip/t-picochip (LIB2FUNCS_EXTRA, RANLIB_FOR_TARGET)
(TARGET_LIBGCC2_CFLAGS, LIBGCC2_DEBUG_CFLAGS): Remove.
* config/rs6000/crtresfpr.asm: Move to
../libgcc/config/rs6000/crtresfpr.S.
* config/rs6000/crtresgpr.asm: Move to
../libgcc/config/rs6000/crtresgpr.S.
* config/rs6000/crtresxfpr.asm: Move to
../libgcc/config/rs6000/crtresxfpr.S.
* config/rs6000/crtresxgpr.asm: Move to
../libgcc/config/rs6000/crtresxgpr.S.
* config/rs6000/crtsavfpr.asm: Move to
../libgcc/config/rs6000/crtsavfpr.S.
* config/rs6000/crtsavgpr.asm: Move to
../libgcc/config/rs6000/crtsavgpr.S.
* config/rs6000/darwin-asm.h: Move to ../libgcc/config/rs6000.
* config/rs6000/darwin-fpsave.asm: Move to
../libgcc/config/rs6000/darwin-fpsave.S.
* config/rs6000/darwin-gpsave.asm: Move to
../libgcc/config/rs6000/darwin-gpsave.S.
* config/rs6000/darwin-tramp.asm: Move to
../libgcc/config/rs6000/darwin-tramp.S.
* config/rs6000/darwin-vecsave.asm: Move to
../libgcc/config/rs6000/darwin-vecsave.S.
* config/rs6000/darwin-world.asm: Move to
../libgcc/config/rs6000/darwin-world.S.
* config/rs6000/e500crtres32gpr.asm: Move to
../libgcc/config/rs6000/e500crtres32gpr.S.
* config/rs6000/e500crtres64gpr.asm: Move to
../libgcc/config/rs6000/e500crtres64gpr.S.
* config/rs6000/e500crtres64gprctr.asm: Move to
../libgcc/config/rs6000/e500crtres64gprctr.S.
* config/rs6000/e500crtrest32gpr.asm: Move to
../libgcc/config/rs6000/e500crtrest32gpr.S.
* config/rs6000/e500crtrest64gpr.asm: Move to
../libgcc/config/rs6000/e500crtrest64gpr.S.
* config/rs6000/e500crtresx32gpr.asm: Move to
../libgcc/config/rs6000/e500crtresx32gpr.S.
* config/rs6000/e500crtresx64gpr.asm: Move to
../libgcc/config/rs6000/e500crtresx64gpr.S.
* config/rs6000/e500crtsav32gpr.asm: Move to
../libgcc/config/rs6000/e500crtsav32gpr.S.
* config/rs6000/e500crtsav64gpr.asm: Move to
../libgcc/config/rs6000/e500crtsav64gpr.S.
* config/rs6000/e500crtsav64gprctr.asm: Move to
../libgcc/config/rs6000/e500crtsav64gprctr.S.
* config/rs6000/e500crtsavg32gpr.asm: Move to
../libgcc/config/rs6000/e500crtsavg32gpr.S.
* config/rs6000/e500crtsavg64gpr.asm: Move to
../libgcc/config/rs6000/e500crtsavg64gpr.S.
* config/rs6000/e500crtsavg64gprctr.asm: Move to
../libgcc/config/rs6000/e500crtsavg64gprctr.S.
* config/rs6000/eabi.asm: Move to ../libgcc/config/rs6000/eabi.S.
* config/rs6000/t-aix43 (LIBGCC, INSTALL_LIBGCC, LIB2FUNCS_EXTRA)
(TARGET_LIBGCC2_CFLAGS): Remove.
* config/rs6000/t-aix52: Likewise.
* config/rs6000/t-darwin: Remove.
* config/rs6000/t-darwin64 (LIB2_SIDITI_CONV_FUNCS)
(LIB2FUNCS_EXTRA): Remove.
* config/rs6000/t-fprules (LIBGCC, INSTALL_LIBGCC): Remove.
* config/rs6000/t-linux64 (TARGET_LIBGCC2_CFLAGS): Remove.
* config/rs6000/t-lynx (LIB2FUNCS_EXTRA, tramp.S, LIBGCC)
(INSTALL_LIBGCC): Remove.
* config/rs6000/t-netbsd (LIB2FUNCS_EXTRA)
(LIB2FUNCS_STATIC_EXTRA, tramp.S, crtsavfpr.S, crtresfpr.S)
(crtsavgpr.S, crtresgpr.S, crtresxfpr.S, crtresxgpr.S, LIBGCC)
(INSTALL_LIBGCC, $(T)crtsavfpr$(objext), $(T)crtresfpr$(objext))
(($(T)crtsavgpr$(objext), $(T)crtresgpr$(objext),
$(T)crtresxfpr$(objext), $(T)crtresxgpr$(objext)): Remove.
* config/rs6000/t-ppccomm (LIB2FUNCS_EXTRA)
(LIB2FUNCS_STATIC_EXTRA, eabi.S, tramp.S): Remove.
* config/rs6000/t-spe (LIBGCC, INSTALL_LIBGCC): Remove.
* config/rs6000/t-vxworks: Remove comment.
* config/rs6000/tramp.asm: Move to ../libgcc/config/rs6000/tramp.S.
* config/rx/t-rx (LIBGCC, INSTALL_LIBGCC): Remove.
* config/sh/linux-atomic.asm: Move to
../libgcc/config/sh/linux-atomic.S.
* config/sh/t-linux (LIB2FUNCS_EXTRA): Remove.
* config/sh/t-netbsd: Remove.
* config/sh/t-sh (TARGET_LIBGCC2_CFLAGS, LIBGCC, INSTALL_LIBGCC):
Remove.
* config/sparc/t-elf (LIBGCC, INSTALL_LIBGCC): Remove.
* config/sparc/t-leon: Likewise.
* config/sparc/t-leon3: Likewise.
* config/sparc/t-linux64: Likewise.
* config/sparc/t-netbsd64: Fix typo.
Remove comment.
* config/spu/divmodti4.c, config/spu/divv2df3.c,
config/spu/float_disf.c, config/spu/float_unsdidf.c,
config/spu/float_unsdisf.c, config/spu/float_unssidf.c,
config/spu/mfc_multi_tag_release.c,
config/spu/mfc_multi_tag_reserve.c, config/spu/mfc_tag_release.c,
config/spu/mfc_tag_reserve.c, config/spu/mfc_tag_table.c,
config/spu/multi3.c: Move to ../libgcc/config/spu.
* config/spu/t-spu-elf (TARGET_LIBGCC2_CFLAGS, LIB2FUNCS_EXCLUDE)
(LIB2FUNCS_STATIC_EXTRA, LIB2_SIDITI_CONV_FUNCS, LIBGCC)
(INSTALL_LIBGCC): Remove.
* config/stormy16/stormy16-lib2.c: Move to
../libgcc/config/stormy16/lib2.c.
* config/stormy16/stormy16-lib2-ashlsi3.c: Move to
../libgcc/config/stormy16/ashlsi3.c.
* config/stormy16/stormy16-lib2-ashrsi3.c: Move to
../libgcc/config/stormy16/ashrsi3.c.
* config/stormy16/stormy16-lib2-clzhi2.c: Move to
../libgcc/config/stormy16/clzhi2.c.
* config/stormy16/stormy16-lib2-cmpsi2.c: Move to
../libgcc/config/stormy16/cmpsi2.c.
* config/stormy16/stormy16-lib2-ctzhi2.c: Move to
../libgcc/config/stormy16/ctzhi2.c.
* config/stormy16/stormy16-lib2-divsi3.c: Move to
../libgcc/config/stormy16/divsi3.c.
* config/stormy16/stormy16-lib2-ffshi2.c: Move to
../libgcc/config/stormy16/ffshi2.c.
* config/stormy16/stormy16-lib2-lshrsi3.c: Move to
../libgcc/config/stormy16/lshrsi3.c.
* config/stormy16/stormy16-lib2-modsi3.c: Move to
../libgcc/config/stormy16/modsi3.c.
* config/stormy16/stormy16-lib2-parityhi2.c: Move to
../libgcc/config/stormy16/parityhi2.c.
* config/stormy16/stormy16-lib2-popcounthi2.c: Move to
../libgcc/config/stormy16/popcounthi2.c.
* config/stormy16/stormy16-lib2-ucmpsi2.c: Move to
../libgcc/config/stormy16/ucmpsi2.c.
* config/stormy16/stormy16-lib2-udivmodsi4.c: Move to
../libgcc/config/stormy16/udivmodsi4.c.
* config/stormy16/stormy16-lib2-udivsi3.c: Move to
../libgcc/config/stormy16/udivsi3.c.
* config/stormy16/stormy16-lib2-umodsi3.c: Move to
../libgcc/config/stormy16/umodsi3.c.
* config/stormy16/t-stormy16: Move to ../libgcc/config/t-stormy16.
* config/v850/t-v850 (INSTALL_LIBGCC): Remove.
* config/xtensa/lib2funcs.S: Move to ../libgcc/config/xtensa.
* config/xtensa/t-elf: Remove.
* config/xtensa/t-xtensa (LIB2FUNCS_EXTRA): Remove.
* config.gcc (*-*-freebsd*): Remove t-freebsd, t-freebsd-thread
from tmake_file.
(*-*-linux*, frv-*-*linux*, *-*-kfreebsd*-gnu, *-*-knetbsd*-gnu,
*-*-gnu*, *-*-kopensolaris*-gnu): Remove t-linux from tmake_file.
(*-*-netbsd*): Remove t-libgcc-pic from tmake_file.
(*-*-openbsd*): Likewise.
Remove t-openbsd-thread for posix threads.
(alpha*-*-linux*): Remove alpha/t-alpha, alpha/t-ieee
from tmake_file.
(alpha*-*-freebsd*): Likewise.
(alpha*-*-netbsd*): Likewise.
(alpha*-*-openbsd*): Likewise.
(alpha64-dec-*vms*): Likewise.
(alpha*-dec-*vms*): Likewise.
(arm*-*-netbsdelf*): Remove arm/t-netbsd from tmake_file.
(arm*-*-linux*): Remove t-linux from tmake_file.
Remove arm/t-bpabi from tmake_file for arm*-*-linux-*eabi.
(arm*-*-uclinux*): Remove arm/t-bpabi from tmake_file for
arm*-*-uclinux*eabi.
(arm*-*-eabi*, arm*-*-symbianelf* ): Remove arm/t-bpabi from
tmake_file for arm*-*-eabi*.
(fr30-*-elf): Remove tmake_file.
(hppa*64*-*-linux*): Remove tmake_file.
(hppa*-*-linux*): Likewise.
(hppa[12]*-*-hpux10*): Remove pa/t-pa-hpux10, pa/t-pa-hpux from
tmake_file.
(hppa*64*-*-hpux11*): Remove pa/t-pa64, pa/t-pa-hpux from tmake_file.
(hppa[12]*-*-hpux11*): Remove pa/t-pa-hpux11, pa/t-pa-hpux from
tmake_file.
(i[34567]86-*-elf*): Remove tmake_file.
(x86_64-*-elf*): Likewise.
(i[34567]86-*-nto-qnx*): Likewise.
(i[34567]86-*-cygwin*): Remove i386/t-cygwin from tmake_file.
(i[34567]86-*-mingw*, x86_64-*-mingw*): Remove i386/t-gthr-win32
from tmake_file if using win32 threads.
(iq2000*-*-elf*): Remove tmake-file.
(microblaze*-linux*): Likewise.
(sh-*-elf*, sh[12346l]*-*-elf*, sh-*-linux*)
(sh[2346lbe]*-*-linux*, sh-*-netbsdelf*, shl*-*-netbsdelf*)
(sh5-*-netbsd*, sh5l*-*-netbsd*, sh64-*-netbsd*)
(sh64l*-*-netbsd*): Remove sh/t-netbsd from tmake_file for
sh5*-*-netbsd*, sh64*-netbsd*, *-*-netbsd.
(xtensa*-*-elf*): Remove tmake_file.
gcc/po:
* EXCLUDES (config/vxlib.c, gbl-ctors.h, libgcc2.c, libgcc2.h)
(longlong.h): Remove.
libgcc:
* configure.ac: Include ../config/picflag.m4.
(GCC_PICFLAG): Call it.
Substitute.
* configure: Regenerate.
* Makefile.in (gcc_srcdir): Remove.
(LIBGCC2_DEBUG_CFLAGS, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES)
(HOST_LIBGCC2_CFLAGS, PICFLAG, LIB2FUNCS_ST, LIB2FUNCS_EXCLUDE)
(LIB2_DIVMOD_FUNCS, LIB2ADD, LIB2ADD_ST): Set.
($(lib2funcs-o), $(lib2funcs-s-o), $(lib2-divmod-o))
($(lib2-divmod-s-o)): Use $(srcdir) to refer to libgcc2.c.
Use $<.
Remove comment.
* libgcc2.c, libgcc2.h, gbl-ctors.h, longlong.h: New files.
* siditi-object.mk ($o$(objext), $(o)_s$(objext)): Use $(srcdir)
to refer to libgcc2.c.
Use $<.
* config/darwin-64.c: New file.
* config/darwin-crt3.c: Remove comment.
* config/divmod.c, config/floatunsidf.c, config/floatunsisf.c,
config/floatunsitf.c, config/floatunsixf.c, config/udivmod.c,
config/udivmodsi4.c: New files.
* config/memcmp.c, config/memcpy.c, config/memmove.c,
config/memset.c: New files.
* config/t-crtstuff-pic (CRTSTUFF_T_CFLAGS_S): Use $(PICFLAG).
* config/t-darwin (HOST_LIBGCC2_CFLAGS): Set.
* config/t-freebsd-thread, config/t-libgcc-pic: New files.
* config/t-libunwind (HOST_LIBGCC2_CFLAGS): Set.
* config/t-openbsd-thread: New file.
* config/t-sol2 (HOST_LIBGCC2_CFLAGS): Remove.
* config/t-vxworks, config/vxlib-tls.c, config/vxlib.c: New files.
* config/alpha/gthr-posix.c, config/alpha/qrnnd.S: New files.
* config/alpha/t-alpha (LIB2ADD): Use $(srcdir) to refer to
qrnnd.S.
Adapt filename.
* config/alpha/t-osf-pthread (LIB2ADD): Use $(srcdir)/config/alpha
to refer to gthr-posix.c.
* config/alpha/t-vms (LIB2ADD): Set.
* config/alpha/vms-gcc_shell_handler.c: New file.
* config/arm/bpabi.c, config/arm/fp16.c,
config/arm/linux-atomic.c, config/arm/linux-atomic-64bit.c,
config/arm/unaligned-funcs.c: New files.
* config/arm/t-bpabi (LIB2ADD, LIB2ADD_ST): Set.
* config/arm/t-elf (HOST_LIBGCC2_CFLAGS): Set.
* config/arm/t-linux: Likewise.
* config/arm/t-linux-eabi (LIB2ADD_ST): Add.
* config/arm/t-netbsd: New file.
* config/arm/t-strongarm-elf (HOST_LIBGCC2_CFLAGS): Set.
* config/arm/t-symbian (LIB2ADD_ST): Set.
* config/avr/t-avr (LIB2FUNCS_EXCLUDE, HOST_LIBGCC2_CFLAGS): Set.
* config/bfin/t-crtstuff (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
* config/bfin/t-elf: New file.
* config/c6x/eqd.c, config/c6x/eqf.c, config/c6x/ged.c,
config/c6x/gef.c, config/c6x/gtd.c, config/c6x/gtf.c,
config/c6x/led.c, config/c6x/lef.c, config/c6x/ltd.c,
config/c6x/ltf.c: New files.
* config/c6x/t-elf (LIB2FUNCS_EXCLUDE, LIB2ADD)
(HOST_LIBGCC2_CFLAGS): Set.
* config/c6x/t-uclinux (HOST_LIBGCC2_CFLAGS): Set.
(CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
* config/cris/arit.c, config/cris/mulsi3.S, config/cris/t-cris:
New files.
* config/cris/t-elfmulti (LIB2ADD_ST): Set.
* config/cris/t-linux (HOST_LIBGCC2_CFLAGS): Remove.
* config/frv/cmovd.c, config/frv/cmovh.c, config/frv/cmovw.c,
config/frv/modi.c, config/frv/uitod.c, config/frv/uitof.c,
config/frv/ulltod.c, config/frv/ulltof.c, config/frv/umodi.c: New
files.
* config/frv/t-frv (LIB2ADD): Set.
* config/frv/t-linux (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
* config/h8300/clzhi2.c, config/h8300/ctzhi2.c,
config/h8300/fixunssfsi.c, config/h8300/parityhi2.c,
config/h8300/popcounthi2.c: New files.
* config/h8300/t-h8300 (LIB2ADD, HOST_LIBGCC2_CFLAGS): Set.
* config/i386/gthr-win32.c: New file.
* config/i386/t-cygming (LIBGCC2_INCLUDES): Set.
* config/i386/t-cygwin: Likewise.
* config/i386/t-darwin, config/i386/t-darwin64,
config/i386/t-gthr-win32, config/i386/t-interix: New files.
* config/i386/t-nto (HOST_LIBGCC2_CFLAGS): Set.
(CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
* config/i386/t-sol2 (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
* config/ia64/quadlib.c: New file.
* config/ia64/t-hpux (LIB2ADD): Set.
* config/ia64/t-ia64: Add comment.
* config/iq2000/lib2funcs.c, config/iq2000/t-iq2000: New files.
* config/lm32/t-uclinux (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
(HOST_LIBGCC2_CFLAGS): Append, remove -fPIC.
* config/m32c/lib2funcs.c, config/m32c/trapv.c: New files.
* config/m32c/t-m32c (LIB2ADD): Set.
* config/m32r/t-linux (HOST_LIBGCC2_CFLAGS): Set.
* config/m32r/t-m32r: Likewise.
* config/m68k/fpgnulib.c: New file.
* config/m68k/t-floatlib (LIB2ADD): Set.
(xfgnulib.c): New target.
* config/mcore/t-mcore (HOST_LIBGCC2_CFLAGS): Set.
* config/mep/lib2funcs.c, config/mep/tramp.c: New files.
* config/mep/t-mep (LIB2ADD): Set.
* config/microblaze/divsi3.asm: Rename to divsi3.S.
* config/microblaze/moddi3.asm: Rename to moddi3.S.
* config/microblaze/modsi3.asm: Rename to modsi3.S.
* config/microblaze/muldi3_hard.asm: Rename to hard.S.
* config/microblaze/mulsi3.asm: Rename to mulsi3.S.
* config/microblaze/stack_overflow_exit.asm: Rename to exit.S.
* config/microblaze/udivsi3.asm: Rename to udivsi3.S.
* config/microblaze/umodsi3.asm: Rename to umodsi3.S.
* config/microblaze/t-microblaze (LIB2ADD): Reflect this.
* config/mips/t-elf, config/mips/t-vr, config/mips/vr4120-div.S:
New files.
* config/mips/t-mips (LIB2_SIDITI_CONV_FUNCS): Set.
* config/mmix/t-mmix (HOST_LIBGCC2_CFLAGS): Set.
* config/pa/fptr.c, config/pa/lib2funcs.S,
config/pa/linux-atomic.c, config/pa/quadlib.c: New files.
* config/pa/t-linux (HOST_LIBGCC2_CFLAGS): Set.
(LIB2ADD, LIB2ADD_ST): Set.
* config/pa/t-hpux, config/pa/t-hpux10, config/pa/t-pa64: New files.
* config/pa/t-linux (HOST_LIBGCC2_CFLAGS, LIB2ADD, LIB2ADD_ST):
Set.
* config/pa/t-linux64 (LIB2ADD_ST, HOST_LIBGCC2_CFLAGS): Set.
* config/pdp11/t-pdp11: New file.
* config/picochip/libgccExtras/adddi3.S,
config/picochip/libgccExtras/ashlsi3.S,
config/picochip/libgccExtras/ashrsi3.S,
config/picochip/libgccExtras/clzsi2.S,
config/picochip/libgccExtras/cmpsi2.S,
config/picochip/libgccExtras/divmod15.S,
config/picochip/libgccExtras/divmodhi4.S,
config/picochip/libgccExtras/divmodsi4.S,
config/picochip/libgccExtras/lshrsi3.S,
config/picochip/libgccExtras/parityhi2.S,
config/picochip/libgccExtras/popcounthi2.S,
config/picochip/libgccExtras/subdi3.S,
config/picochip/libgccExtras/ucmpsi2.S,
config/picochip/libgccExtras/udivmodhi4.S,
config/picochip/libgccExtras/udivmodsi4.S: New files.
* config/picochip/t-picochip (LIB2ADD, HOST_LIBGCC2_CFLAGS)
(LIBGCC2_DEBUG_CFLAGS, RANLIB_FOR_TARGET): Set.
* config/rs6000/crtresfpr.S, config/rs6000/crtresgpr.S,
config/rs6000/crtresxfpr.S, config/rs6000/crtresxgpr.S,
config/rs6000/crtsavfpr.S, config/rs6000/crtsavgpr.S)
config/rs6000/darwin-asm.h, config/rs6000/darwin-fpsave.S,
config/rs6000/darwin-gpsave.S, config/rs6000/darwin-tramp.S,
config/rs6000/darwin-vecsave.S, config/rs6000/darwin-world.S: New
files.
* config/rs6000/t-darwin (LIB2ADD, LIB2ADD_ST)
(HOST_LIBGCC2_CFLAGS): Set.
* config/rs6000/t-darwin64: New file.
* config/rs6000/t-linux64 (HOST_LIBGCC2_CFLAGS): Set.
* config/rs6000/t-lynx, config/rs6000/t-netbsd: New files.
* config/rs6000/t-ppccomm (LIB2ADD): Add
$(srcdir)/config/rs6000/tramp.S.
(LIB2ADD_ST): Use $(srcdir)/config/rs6000 to refer to sources.
Add $(srcdir)/config/rs6000/eabi.S.
(crtsavfpr.S, crtresfpr.S, crtsavgpr.S, crtresgpr.S, crtresxfpr.S)
(crtresxgpr.S, e500crtres32gpr.S, e500crtres64gpr.S)
(e500crtres64gprctr.S, e500crtrest32gpr.S, e500crtrest64gpr.S)
(e500crtresx32gpr.S, e500crtresx64gpr.S, e500crtsav32gpr.S)
(e500crtsav64gpr.S, e500crtsav64gprctr.S, e500crtsavg32gpr.S)
(e500crtsavg64gpr.S, e500crtsavg64gprctr.S): Remove.
* config/rs6000/tramp.S: New file.
* config/s390/t-tpf: Remove.
* config/sh/linux-atomic.S: New file.
* config/sh/t-linux (LIB2ADD): Set.
(HOST_LIBGCC2_CFLAGS): Append, remove -fpic.
* config/sh/t-netbsd (LIB2ADD, HOST_LIBGCC2_CFLAGS): Set.
* config/sh/t-sh (unwind-dw2-Os-4-200.o): Use $(srcdir) to refer
to unwind-dw2.c.
(HOST_LIBGCC2_CFLAGS): Set.
* config/sparc/t-sol2 (CRTSTUFF_T_CFLAGS): Use $(PICFLAG).
* config/spu/divmodti4.c, config/spu/divv2df3.c,
config/spu/float_disf.c, config/spu/float_unsdidf.c,
config/spu/float_unsdisf.c, config/spu/float_unssidf.c,
config/spu/mfc_multi_tag_release.c,
config/spu/mfc_multi_tag_reserve.c, config/spu/mfc_tag_release.c,
config/spu/mfc_tag_reserve.c, config/spu/mfc_tag_table.c,
config/spu/multi3.c: New files.
* config/spu/t-elf (LIB2ADD, LIB2ADD_ST, LIB2_SIDITI_CONV_FUNCS)
(HOST_LIBGCC2_CFLAGS): Set.
* config/stormy16/ashlsi3.c, config/stormy16/ashrsi3.c,
config/stormy16/clzhi2.c, config/stormy16/cmpsi2.c,
config/stormy16/ctzhi2.c, config/stormy16/divsi3.c,
config/stormy16/ffshi2.c, config/stormy16/lib2.c,
config/stormy16/lshrsi3.c, config/stormy16/modsi3.c,
config/stormy16/parityhi2.c, config/stormy16/popcounthi2.c,
config/stormy16/t-stormy16, config/stormy16/ucmpsi2.c,
config/stormy16/udivmodsi4.c, config/stormy16/udivsi3.c,
config/stormy16/umodsi3.c: New files.
* config/xtensa/lib2funcs.S: New file.
* config/xtensa/t-elf (HOST_LIBGCC2_CFLAGS): Set.
* config/xtensa/t-xtensa (LIB2ADD): Set.
* config.host (*-*-darwin*): Add t-libgcc-pic to tmake_file.
(*-*-freebsd*): Add t-freebsd, t-libgcc-pic to tmake_file.
Add t-freebsd-thread to tmake_file for posix threads.
(*-*-linux*, frv-*-*linux*, *-*-kfreebsd*-gnu, *-*-knetbsd*-gnu)
(*-*-gnu*, *-*-kopensolaris*-gnu): Add t-libgcc-pic to tmake_file.
(*-*-lynxos*): Likewise.
(*-*-netbsd*): Likewise.
(*-*-openbsd*): Likewise.
Add t-openbsd-thread to tmake_file for posix threads.
(*-*-solaris2*): Add t-libgcc-pic to tmake_file.
(*-*-vxworks*): Set tmake_file.
(alpha*-*-linux*): Add alpha/t-alpha, alpha/t-ieee to tmake_file.
(alpha*-*-freebsd*): Likewise.
(alpha*-*-netbsd*): Likewise.
(alpha*-*-openbsd*): Likewise.
(alpha*-dec-osf5.1*): Remove qrnnd.o, gthr-posix.o from extra_parts.
(alpha64-dec-*vms*): Add alpha/t-alpha, alpha/t-ieee to tmake_file.
(alpha*-dec-*vms*): Likewise.
(arm*-*-netbsdelf*): Add arm/t-netbsd to tmake_file.
(bfin*-elf*): Add bfin/t-elf to tmake_file.
(bfin*-uclinux*): Likewise.
(bfin*-linux-uclibc*): Likewise.
(crisv32-*-elf): Add cris/t-cris to tmake_file.
(crisv32-*-none): Likewise.
(cris-*-elf): Likewise.
(cris-*-none): Likewise.
(cris-*-linux*, crisv32-*-linux*): Likewise.
(hppa[12]*-*-hpux10*): Add pa/t-hpux pa/t-hpux10, t-libgcc-pic to
tmake_file.
(hppa*64*-*-hpux11*): Add pa/t-hpux, pa/t-pa64, t-libgcc-pic to
tmake_file.
(hppa[12]*-*-hpux11*): Add pa/t-hpux, t-libgcc-pic to tmake_file.
(i[34567]86-*-elf*): Add t-libgcc-pic to tmake_file.
(x86_64-*-elf*): Likewise.
(i[34567]86-*-nto-qnx*): Likewise.
(i[34567]86-*-mingw*): Add i386/t-gthr-win32 to tmake_file for
win32 threads.
(x86_64-*-mingw*): Likewise.
(i[34567]86-*-interix3*): Add i386/t-interix to tmake_file.
(lm32-*-uclinux*): Add t-libgcc-pic to tmake_file.
(mipsisa32-*-elf*, mipsisa32el-*-elf*, mipsisa32r2-*-elf*)
(mipsisa32r2el-*-elf*, mipsisa64-*-elf*, mipsisa64el-*-elf*)
(mipsisa64r2-*-elf*, mipsisa64r2el-*-elf*): Add mips/t-elf to
tmake_file.
(mipsisa64sr71k-*-elf*): Likewise.
(mipsisa64sb1-*-elf*, mipsisa64sb1el-*-elf*): Likewise.
(mips-*-elf*, mipsel-*-elf*): Likewise.
(mips64-*-elf*, mips64el-*-elf*): Likewise.
(mips64orion-*-elf*, mips64orionel-*-elf*): Likewise.
(mips*-*-rtems*): Likewise.
(mips64vr-*-elf*, mips64vrel-*-elf*): Add mips/t-elf, mips/t-vr
to tmake_file.
(pdp11-*-*): Add pdp11/t-pdp11 to tmake_file.
(powerpc64-*-darwin*): Add rs6000/t-darwin64 to tmake_file.
(s390x-ibm-tpf*): Add t-libgcc-pic to tmake_file.
(spu-*-elf*): Likewise.
(tic6x-*-uclinux): Add t-libgcc-pic to tmake_file.
libquadmath:
* printf/gmp-impl.h: Adapt path to longlong.h.
From-SVN: r180774
2011-11-02 16:23:48 +01:00
|
|
|
|
2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
|
|
|
|
|
|
|
|
|
* printf/gmp-impl.h: Adapt path to longlong.h.
|
|
|
|
|
|
2011-09-21 16:36:03 +02:00
|
|
|
|
2011-09-21 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.am (FLAGS_TO_PASS): Define.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
|
2011-08-01 10:55:33 +02:00
|
|
|
|
2011-08-01 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* math/rem_pio2q.c (__quadmath_kernel_rem_pio2): Fix up fq to y
|
|
|
|
|
conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
|
|
|
|
|
|
2011-04-03 20:45:16 +02:00
|
|
|
|
2011-04-03 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/48311
|
|
|
|
|
* libquadmath.texi (strtoflt128): Fix typo.
|
|
|
|
|
(quadmath_snprintf): Move note up, make @item.
|
|
|
|
|
|
2011-03-25 21:12:37 +01:00
|
|
|
|
2011-03-25 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* printf/printf_fp.c (__quadmath_printf_fp): Use memcpy instead of
|
|
|
|
|
mempcpy.
|
|
|
|
|
|
2011-03-21 13:24:17 +01:00
|
|
|
|
2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
|
|
|
|
|
|
|
|
|
PR bootstrap/48135
|
|
|
|
|
* configure.ac (quadmath_use_symver): Handle --disable-symvers.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2011-02-28 21:31:46 +01:00
|
|
|
|
2011-02-28 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* printf/quadmath-printf.c (quadmath_snprintf): Make sure
|
|
|
|
|
that for size > 0 str is always zero terminated.
|
|
|
|
|
|
2011-02-20 22:59:28 +01:00
|
|
|
|
2011-02-20 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR bootstrap/47827
|
|
|
|
|
* printf/quadmath-printf.h (NAN): Redefine to __builtin_nanf ("").
|
|
|
|
|
|
libquadmath.texi (FLT128_DIG, [...]): Document.
* libquadmath.texi (FLT128_DIG, FLT128_MIN_10_EXP,
FLT128_MAX_10_EXP): Document.
(strtoflt128): Remove obsolete comment.
* configure.ac (HAVE_STRTOULL): New check.
* printf/gmp-impl.h (mpn_construct_float128): New prototype,
define.
* printf/mul_n.c: Include <config.h>.
* printf/add_n.c: Likewise.
* printf/cmp.c: Likewise.
* printf/fpioconst.c: Likewise.
* printf/mul_1.c: Likewise.
* printf/rshift.c: Likewise.
* printf/lshift.c: Likewise.
* printf/submul_1.c: Likewise.
* printf/sub_n.c: Likewise.
* printf/divrem.c: Likewise.
* printf/addmul_1.c: Likewise.
* printf/mul.c: Likewise.
* printf/quadmath-printf.h (isupper, isdigit, tolower): Change
to avoid evaluating argument multiple times.
(isxdigit): Redefine.
* strtod/strtoflt128.c: New file.
* strtod/strtod_l.c: New file.
* strtod/mpn2flt128.c: New file.
* strtod/grouping.h: New file.
* strtod/tens_in_limb.c: New file.
* gdtoa/arith.h: Removed.
* gdtoa/gd_qnan.h: Removed.
* gdtoa/gdtoa_fltrnds.h: Removed.
* gdtoa/gdtoa.h: Removed.
* gdtoa/gdtoaimp.h: Removed.
* gdtoa/gethex.c: Removed.
* gdtoa/gmisc.c: Removed.
* gdtoa/hd_init.c: Removed.
* gdtoa/hexnan.c: Removed.
* gdtoa/makefile: Removed.
* gdtoa/misc.c: Removed.
* gdtoa/README.gdtoa: Removed.
* gdtoa/smisc.c: Removed.
* gdtoa/strtodg.c: Removed.
* gdtoa/strtopQ.c: Removed.
* gdtoa/sum.c: Removed.
* quadmath.h (FLT128_DIG, FLT128_MIN_10_EXP, FLT128_MAX_10_EXP):
Define.
* Makefile.am (libquadmath_la_SOURCES): Remove gdtoa/*, add
strtod/strtoflt128.c, strtod/mpn2flt128.c and strtod/tens_in_limb.c.
* config.h.in: Regenerated.
* configure: Regenerated.
* Makefile.in: Regenerated.
From-SVN: r170254
2011-02-17 20:57:18 +01:00
|
|
|
|
2011-02-17 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* libquadmath.texi (FLT128_DIG, FLT128_MIN_10_EXP,
|
|
|
|
|
FLT128_MAX_10_EXP): Document.
|
|
|
|
|
(strtoflt128): Remove obsolete comment.
|
|
|
|
|
* configure.ac (HAVE_STRTOULL): New check.
|
|
|
|
|
* printf/gmp-impl.h (mpn_construct_float128): New prototype,
|
|
|
|
|
define.
|
|
|
|
|
* printf/mul_n.c: Include <config.h>.
|
|
|
|
|
* printf/add_n.c: Likewise.
|
|
|
|
|
* printf/cmp.c: Likewise.
|
|
|
|
|
* printf/fpioconst.c: Likewise.
|
|
|
|
|
* printf/mul_1.c: Likewise.
|
|
|
|
|
* printf/rshift.c: Likewise.
|
|
|
|
|
* printf/lshift.c: Likewise.
|
|
|
|
|
* printf/submul_1.c: Likewise.
|
|
|
|
|
* printf/sub_n.c: Likewise.
|
|
|
|
|
* printf/divrem.c: Likewise.
|
|
|
|
|
* printf/addmul_1.c: Likewise.
|
|
|
|
|
* printf/mul.c: Likewise.
|
|
|
|
|
* printf/quadmath-printf.h (isupper, isdigit, tolower): Change
|
|
|
|
|
to avoid evaluating argument multiple times.
|
|
|
|
|
(isxdigit): Redefine.
|
|
|
|
|
* strtod/strtoflt128.c: New file.
|
|
|
|
|
* strtod/strtod_l.c: New file.
|
|
|
|
|
* strtod/mpn2flt128.c: New file.
|
|
|
|
|
* strtod/grouping.h: New file.
|
|
|
|
|
* strtod/tens_in_limb.c: New file.
|
|
|
|
|
* gdtoa/arith.h: Removed.
|
|
|
|
|
* gdtoa/gd_qnan.h: Removed.
|
|
|
|
|
* gdtoa/gdtoa_fltrnds.h: Removed.
|
|
|
|
|
* gdtoa/gdtoa.h: Removed.
|
|
|
|
|
* gdtoa/gdtoaimp.h: Removed.
|
|
|
|
|
* gdtoa/gethex.c: Removed.
|
|
|
|
|
* gdtoa/gmisc.c: Removed.
|
|
|
|
|
* gdtoa/hd_init.c: Removed.
|
|
|
|
|
* gdtoa/hexnan.c: Removed.
|
|
|
|
|
* gdtoa/makefile: Removed.
|
|
|
|
|
* gdtoa/misc.c: Removed.
|
|
|
|
|
* gdtoa/README.gdtoa: Removed.
|
|
|
|
|
* gdtoa/smisc.c: Removed.
|
|
|
|
|
* gdtoa/strtodg.c: Removed.
|
|
|
|
|
* gdtoa/strtopQ.c: Removed.
|
|
|
|
|
* gdtoa/sum.c: Removed.
|
|
|
|
|
* quadmath.h (FLT128_DIG, FLT128_MIN_10_EXP, FLT128_MAX_10_EXP):
|
|
|
|
|
Define.
|
|
|
|
|
* Makefile.am (libquadmath_la_SOURCES): Remove gdtoa/*, add
|
|
|
|
|
strtod/strtoflt128.c, strtod/mpn2flt128.c and strtod/tens_in_limb.c.
|
|
|
|
|
* config.h.in: Regenerated.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
|
2011-02-16 14:54:30 +01:00
|
|
|
|
2011-02-16 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
|
|
|
|
* printf/quadmath-printf.c: Also check __GLIBC__ when checking
|
|
|
|
|
whether workarounds for printf hook handling should be added.
|
|
|
|
|
|
|
|
|
|
* configure.ac: Check for locale.h too.
|
|
|
|
|
(USE_LOCALE_SUPPORT): Remove check.
|
|
|
|
|
(USE_NL_LANGINFO, USE_NL_LANGINFO_WC, USE_LOCALECONV): New checks.
|
|
|
|
|
(USE_I18_NUMBER_H): Check also for _NL_CTYPE_MB_CUR_MAX.
|
|
|
|
|
* printf/printf_fphex.c (__quadmath_printf_fphex): Use nl_langinfo
|
|
|
|
|
or localeconv for narrow version and nl_langinfo if USE_NL_LANGINFO_WC
|
|
|
|
|
for wide version.
|
|
|
|
|
* printf/quadmath-printf.h: Include locale.h if HAVE_LOCALE_H.
|
|
|
|
|
* printf/printf_fp.c (USE_I18N_NUMBER_H): Don't define to 0.
|
|
|
|
|
(__quadmath_printf_fp): Use nl_langinfo or localeconv for narrow
|
|
|
|
|
version and nl_langinfo if USE_NL_LANGINFO_WC for wide version.
|
|
|
|
|
Guard nl_langinfo (_NL_CTYPE_MB_CUR_MAX) use with
|
|
|
|
|
USE_I18N_NUMBER_H #ifdef.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
* config.h.in: Regenerated.
|
|
|
|
|
|
re PR fortran/47642 (real(kind=16) - libquadmath - segfault on amd64 FreeBSD)
PR fortran/47642
* libquadmath.texi (quadmath_snprintf): Document.
(quadmath_flt128tostr): Remove.
* Makefile.am (libquadmath_la_SOURCES): Add printf/*.c.
Remove quadmath_io.c, gdtoa/gdtoa.c, gdtoa/g__fmt.c,
gdtoa/g_Qfmt.c, gdtoa/dmisc.c and gdtoa/ulp.c.
* quadmath.h (quadmath_snprintf): New prototype.
(quadmath_flt128tostr): Remove.
* quadmath_weak.h (quadmath_snprintf): Add.
(quadmath_flt128tostr): Remove.
* configure.ac: New AC_CHECK_HEADERS headers: langinfo.h, wchar.h,
wctype.h, limits.h, ctype.h, printf.h, errno.h.
(AC_USE_SYSTEM_EXTENSIONS): Add.
(HAVE_HIDDEN_VISIBILITY, HAVE_PRINTF_HOOKS,
USE_LOCALE_SUPPORT, USE_I18N_NUMBER_H): New checks.
* quadmath.map (QUADMATH_1.0): Add quadmath_snprintf. Remove
quadmath_flt128tostr.
* printf/printf_fphex.c: New file.
* printf/_itowa.h: New file.
* printf/mul_n.c: New file.
* printf/quadmath-printf.h: New file.
* printf/submul_1.c: New file.
* printf/quadmath-printf.c: New file.
* printf/gmp-impl.h: New file.
* printf/lshift.c: New file.
* printf/fpioconst.h: New file.
* printf/add_n.c: New file.
* printf/cmp.c: New file.
* printf/sub_n.c: New file.
* printf/mul.c: New file.
* printf/divrem.c: New file.
* printf/addmul_1.c: New file.
* printf/printf_fp.c: New file.
* printf/_itoa.h: New file.
* printf/fpioconst.c: New file.
* printf/_i18n_number.h: New file.
* printf/flt1282mpn.c: New file.
* printf/rshift.c: New file.
* printf/mul_1.c: New file.
* quadmath_io.c: Removed.
* gdtoa/gdtoa.c: Removed.
* gdtoa/g__fmt.c: Removed.
* gdtoa/g_Qfmt.c: Removed.
* gdtoa/dmisc.c: Removed.
* gdtoa/ulp.c: Removed.
* config.h.in: Regenerated.
* configure: Regenerated.
* Makefile.in: Regenerated.
* io/write_float.def (DTOAQ): Use quadmath_snprintf instead of
quadmath_flt128tostr.
* io/transfer128.c (tmp2): Initialize to quadmath_snprintf instead
of quadmath_flt128tostr.
From-SVN: r170135
2011-02-14 16:34:44 +01:00
|
|
|
|
2011-02-14 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
2011-02-14 19:49:07 +01:00
|
|
|
|
PR bootstrap/47736
|
|
|
|
|
* configure.ac (HAVE_PRINTF_HOOKS): Test if printf_info struct has
|
|
|
|
|
user field.
|
|
|
|
|
* printf/quadmath-printf.c (quadmath_snprintf): Clear whole info
|
|
|
|
|
field instead of setting individual fields to 0. Don't set info.user
|
|
|
|
|
to -1.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
2011-02-14 17:40:38 +01:00
|
|
|
|
* configure.ac (HAVE_HIDDEN_VISIBILITY): Test with -Werror in CFLAGS.
|
|
|
|
|
* printf/printf_fp.c: Don't include <alloca.h>.
|
|
|
|
|
* printf/quadmath-printf.h (_itoa): Redefine to __quadmath_itoa.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
|
re PR fortran/47642 (real(kind=16) - libquadmath - segfault on amd64 FreeBSD)
PR fortran/47642
* libquadmath.texi (quadmath_snprintf): Document.
(quadmath_flt128tostr): Remove.
* Makefile.am (libquadmath_la_SOURCES): Add printf/*.c.
Remove quadmath_io.c, gdtoa/gdtoa.c, gdtoa/g__fmt.c,
gdtoa/g_Qfmt.c, gdtoa/dmisc.c and gdtoa/ulp.c.
* quadmath.h (quadmath_snprintf): New prototype.
(quadmath_flt128tostr): Remove.
* quadmath_weak.h (quadmath_snprintf): Add.
(quadmath_flt128tostr): Remove.
* configure.ac: New AC_CHECK_HEADERS headers: langinfo.h, wchar.h,
wctype.h, limits.h, ctype.h, printf.h, errno.h.
(AC_USE_SYSTEM_EXTENSIONS): Add.
(HAVE_HIDDEN_VISIBILITY, HAVE_PRINTF_HOOKS,
USE_LOCALE_SUPPORT, USE_I18N_NUMBER_H): New checks.
* quadmath.map (QUADMATH_1.0): Add quadmath_snprintf. Remove
quadmath_flt128tostr.
* printf/printf_fphex.c: New file.
* printf/_itowa.h: New file.
* printf/mul_n.c: New file.
* printf/quadmath-printf.h: New file.
* printf/submul_1.c: New file.
* printf/quadmath-printf.c: New file.
* printf/gmp-impl.h: New file.
* printf/lshift.c: New file.
* printf/fpioconst.h: New file.
* printf/add_n.c: New file.
* printf/cmp.c: New file.
* printf/sub_n.c: New file.
* printf/mul.c: New file.
* printf/divrem.c: New file.
* printf/addmul_1.c: New file.
* printf/printf_fp.c: New file.
* printf/_itoa.h: New file.
* printf/fpioconst.c: New file.
* printf/_i18n_number.h: New file.
* printf/flt1282mpn.c: New file.
* printf/rshift.c: New file.
* printf/mul_1.c: New file.
* quadmath_io.c: Removed.
* gdtoa/gdtoa.c: Removed.
* gdtoa/g__fmt.c: Removed.
* gdtoa/g_Qfmt.c: Removed.
* gdtoa/dmisc.c: Removed.
* gdtoa/ulp.c: Removed.
* config.h.in: Regenerated.
* configure: Regenerated.
* Makefile.in: Regenerated.
* io/write_float.def (DTOAQ): Use quadmath_snprintf instead of
quadmath_flt128tostr.
* io/transfer128.c (tmp2): Initialize to quadmath_snprintf instead
of quadmath_flt128tostr.
From-SVN: r170135
2011-02-14 16:34:44 +01:00
|
|
|
|
PR fortran/47642
|
|
|
|
|
* libquadmath.texi (quadmath_snprintf): Document.
|
|
|
|
|
(quadmath_flt128tostr): Remove.
|
|
|
|
|
* Makefile.am (libquadmath_la_SOURCES): Add printf/*.c.
|
|
|
|
|
Remove quadmath_io.c, gdtoa/gdtoa.c, gdtoa/g__fmt.c,
|
|
|
|
|
gdtoa/g_Qfmt.c, gdtoa/dmisc.c and gdtoa/ulp.c.
|
|
|
|
|
* quadmath.h (quadmath_snprintf): New prototype.
|
|
|
|
|
(quadmath_flt128tostr): Remove.
|
|
|
|
|
* quadmath_weak.h (quadmath_snprintf): Add.
|
|
|
|
|
(quadmath_flt128tostr): Remove.
|
|
|
|
|
* configure.ac: New AC_CHECK_HEADERS headers: langinfo.h, wchar.h,
|
|
|
|
|
wctype.h, limits.h, ctype.h, printf.h, errno.h.
|
|
|
|
|
(AC_USE_SYSTEM_EXTENSIONS): Add.
|
|
|
|
|
(HAVE_HIDDEN_VISIBILITY, HAVE_PRINTF_HOOKS,
|
|
|
|
|
USE_LOCALE_SUPPORT, USE_I18N_NUMBER_H): New checks.
|
|
|
|
|
* quadmath.map (QUADMATH_1.0): Add quadmath_snprintf. Remove
|
|
|
|
|
quadmath_flt128tostr.
|
|
|
|
|
* printf/printf_fphex.c: New file.
|
|
|
|
|
* printf/_itowa.h: New file.
|
|
|
|
|
* printf/mul_n.c: New file.
|
|
|
|
|
* printf/quadmath-printf.h: New file.
|
|
|
|
|
* printf/submul_1.c: New file.
|
|
|
|
|
* printf/quadmath-printf.c: New file.
|
|
|
|
|
* printf/gmp-impl.h: New file.
|
|
|
|
|
* printf/lshift.c: New file.
|
|
|
|
|
* printf/fpioconst.h: New file.
|
|
|
|
|
* printf/add_n.c: New file.
|
|
|
|
|
* printf/cmp.c: New file.
|
|
|
|
|
* printf/sub_n.c: New file.
|
|
|
|
|
* printf/mul.c: New file.
|
|
|
|
|
* printf/divrem.c: New file.
|
|
|
|
|
* printf/addmul_1.c: New file.
|
|
|
|
|
* printf/printf_fp.c: New file.
|
|
|
|
|
* printf/_itoa.h: New file.
|
|
|
|
|
* printf/fpioconst.c: New file.
|
|
|
|
|
* printf/_i18n_number.h: New file.
|
|
|
|
|
* printf/flt1282mpn.c: New file.
|
|
|
|
|
* printf/rshift.c: New file.
|
|
|
|
|
* printf/mul_1.c: New file.
|
|
|
|
|
* quadmath_io.c: Removed.
|
|
|
|
|
* gdtoa/gdtoa.c: Removed.
|
|
|
|
|
* gdtoa/g__fmt.c: Removed.
|
|
|
|
|
* gdtoa/g_Qfmt.c: Removed.
|
|
|
|
|
* gdtoa/dmisc.c: Removed.
|
|
|
|
|
* gdtoa/ulp.c: Removed.
|
|
|
|
|
* config.h.in: Regenerated.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
|
2011-02-13 12:45:53 +01:00
|
|
|
|
2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
* aclocal.m4: Likewise.
|
|
|
|
|
* configure: Likewise.
|
|
|
|
|
|
2011-02-01 03:29:18 +01:00
|
|
|
|
2011-01-31 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
|
|
|
|
|
|
|
|
|
PR libquadmath/47293
|
|
|
|
|
* gdtoa/qd_qnan.h: Fix NAN bit patterns.
|
|
|
|
|
* gdtoa/strtopQ.c (strtoflt128): Handle endianess with NAN.
|
|
|
|
|
|
2011-01-17 20:03:28 +01:00
|
|
|
|
2011-01-17 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/47295
|
|
|
|
|
* libquadmath.text: Document typedef and constants.
|
|
|
|
|
|
2011-01-17 10:14:41 +01:00
|
|
|
|
2011-01-17 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46817
|
|
|
|
|
* quadmath-imp.h: Refer to libquadmath not ot libiberty,
|
|
|
|
|
bump copyright year and use /**/ instead of // comments.
|
|
|
|
|
* quadmath.h: Ditto.
|
|
|
|
|
* quadmath-weak.h: Ditto.
|
|
|
|
|
* quadmath_io.c: Ditto.
|
|
|
|
|
|
2011-01-16 17:40:05 +01:00
|
|
|
|
2011-01-16 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
|
2011-01-16 21:48:24 +01:00
|
|
|
|
PR libfortran/47322
|
|
|
|
|
* math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t.
|
|
|
|
|
|
re PR fortran/46625 (libquadmath: Mangle internal symbols; rename __float128 <-> string functions)
PR fortran/46625
* quadmath.map (QUADMATH_1.0): Remove quadmath_strtopQ
and quadmath_dtoaq. Add strtoflt128 and quadmath_flt128tostr.
* quadmath_weak.h (quadmath_strtopQ, quadmath_dtoaq): Remove.
(strtoflt128, quadmath_flt128tostr): Add.
* gdtoa/strtopQ.c (quadmath_strtopQ): Rename to...
(strtoflt128): ... this. Return __float128, instead of writing
to memory pointed by last argument.
* quadmath.h: Use C style comments instead of C++ style.
(quadmath_strtopQ, quadmath_dtoaq): Remove prototypes.
(strtoflt128, quadmath_flt128tostr): Add prototypes.
* libquadmath.texi (quadmath_dtoaq): Rename to quadmath_flt128tostr.
(quadmath_strtopQ): Rename to strtoflt128. Adjust prototype,
adjust examples.
* quadmath_io.c (quadmath_dtoaq): Rename to...
(quadmath_flt128tostr): ... this.
libgfortran/
* io/write_float.def (DTOAQ): Use quadmath_flt128tostr
instead of quadmath_dtoa.
* io/transfer128.c (tmp1, tmp2): New variables, bring in
strtoflt128 and quadmath_flt128tostr.
(transfer_real128, transfer_real128_write, transfer_complex128,
transfer_complex128_write): Remove tmp1/tmp2 variables.
* io/read.c (convert_real): Use strtoflt128 instead of
quadmath_strtopQ, adjust for the changed arguments and return
value.
From-SVN: r168856
2011-01-16 17:55:27 +01:00
|
|
|
|
PR fortran/46625
|
|
|
|
|
* quadmath.map (QUADMATH_1.0): Remove quadmath_strtopQ
|
|
|
|
|
and quadmath_dtoaq. Add strtoflt128 and quadmath_flt128tostr.
|
|
|
|
|
* quadmath_weak.h (quadmath_strtopQ, quadmath_dtoaq): Remove.
|
|
|
|
|
(strtoflt128, quadmath_flt128tostr): Add.
|
|
|
|
|
* gdtoa/strtopQ.c (quadmath_strtopQ): Rename to...
|
|
|
|
|
(strtoflt128): ... this. Return __float128, instead of writing
|
|
|
|
|
to memory pointed by last argument.
|
|
|
|
|
* quadmath.h: Use C style comments instead of C++ style.
|
|
|
|
|
(quadmath_strtopQ, quadmath_dtoaq): Remove prototypes.
|
|
|
|
|
(strtoflt128, quadmath_flt128tostr): Add prototypes.
|
|
|
|
|
* libquadmath.texi (quadmath_dtoaq): Rename to quadmath_flt128tostr.
|
|
|
|
|
(quadmath_strtopQ): Rename to strtoflt128. Adjust prototype,
|
|
|
|
|
adjust examples.
|
|
|
|
|
* quadmath_io.c (quadmath_dtoaq): Rename to...
|
|
|
|
|
(quadmath_flt128tostr): ... this.
|
|
|
|
|
|
2011-01-16 17:48:59 +01:00
|
|
|
|
* quadmath.h (__quadmath_throw, __quadmath_nth): Define.
|
|
|
|
|
Use it for all prototypes.
|
|
|
|
|
|
re PR fortran/46416 (libquadmath: missing functions)
PR fortran/46416
* quadmath.h (cbrtq, finiteq, isnanq, signbitq, sqrtq): Remove
const from prototype argument.
(cimagq, conjq, cprojq, crealq, fdimq, fmaxq, fminq, ilogbq,
llrintq, log2q, lrintq, nearbyintq, remquoq): New prototypes.
(__quadmath_extern_inline): Define.
(cimagq, conjq, crealq): New inlines.
* Makefile.am (libquadmath_la_SOURCES): Add math/cimagq.c,
math/conjq.c, math/cprojq.c, math/crealq.c, math/fdimq.c,
math/fmaxq.c, math/fminq.c, math/ilogbq.c, math/llrintq.c,
math/log2q.c, math/lrintq.c, math/nearbyintq.c and math/remquoq.c.
* Makefile.in: Regenerated.
* quadmath_weak.h (cimagq, conjq, cprojq, crealq, fdimq, fmaxq,
fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq, remquoq): Add.
* quadmath-imp.h (__LITTLE_ENDIAN__): Don't define.
(ieee854_float128): Use __BYTE_ORDER == __ORDER_BIG_ENDIAN__
tests instead of __BIG_ENDIAN__.
* quadmath.map (QUADMATH_1.0): Add cimagq, conjq, cprojq, crealq,
fdimq, fmaxq, fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq
and remquoq.
* libquadmath.texi (cimagq, conjq, cprojq, crealq, fdimq, fmaxq,
fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq, remquoq): Add.
* math/cprojq.c: New file.
* math/ilogbq.c: New file.
* math/fminq.c: New file.
* math/llrintq.c: New file.
* math/log2q.c: New file.
* math/lrintq.c: New file.
* math/crealq.c: New file.
* math/nearbyintq.c: New file.
* math/fmaxq.c: New file.
* math/conjq.c: New file.
* math/remquoq.c: New file.
* math/cimagq.c: New file.
* math/fdimq.c: New file.
* math/ldexpq.c: Include errno.h. Set errno to ERANGE if needed.
From-SVN: r168854
2011-01-16 17:44:35 +01:00
|
|
|
|
PR fortran/46416
|
|
|
|
|
* quadmath.h (cbrtq, finiteq, isnanq, signbitq, sqrtq): Remove
|
|
|
|
|
const from prototype argument.
|
|
|
|
|
(cimagq, conjq, cprojq, crealq, fdimq, fmaxq, fminq, ilogbq,
|
|
|
|
|
llrintq, log2q, lrintq, nearbyintq, remquoq): New prototypes.
|
|
|
|
|
(__quadmath_extern_inline): Define.
|
|
|
|
|
(cimagq, conjq, crealq): New inlines.
|
|
|
|
|
* Makefile.am (libquadmath_la_SOURCES): Add math/cimagq.c,
|
|
|
|
|
math/conjq.c, math/cprojq.c, math/crealq.c, math/fdimq.c,
|
|
|
|
|
math/fmaxq.c, math/fminq.c, math/ilogbq.c, math/llrintq.c,
|
|
|
|
|
math/log2q.c, math/lrintq.c, math/nearbyintq.c and math/remquoq.c.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
* quadmath_weak.h (cimagq, conjq, cprojq, crealq, fdimq, fmaxq,
|
|
|
|
|
fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq, remquoq): Add.
|
|
|
|
|
* quadmath-imp.h (__LITTLE_ENDIAN__): Don't define.
|
|
|
|
|
(ieee854_float128): Use __BYTE_ORDER == __ORDER_BIG_ENDIAN__
|
|
|
|
|
tests instead of __BIG_ENDIAN__.
|
|
|
|
|
* quadmath.map (QUADMATH_1.0): Add cimagq, conjq, cprojq, crealq,
|
|
|
|
|
fdimq, fmaxq, fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq
|
|
|
|
|
and remquoq.
|
|
|
|
|
* libquadmath.texi (cimagq, conjq, cprojq, crealq, fdimq, fmaxq,
|
|
|
|
|
fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq, remquoq): Add.
|
|
|
|
|
* math/cprojq.c: New file.
|
|
|
|
|
* math/ilogbq.c: New file.
|
|
|
|
|
* math/fminq.c: New file.
|
|
|
|
|
* math/llrintq.c: New file.
|
|
|
|
|
* math/log2q.c: New file.
|
|
|
|
|
* math/lrintq.c: New file.
|
|
|
|
|
* math/crealq.c: New file.
|
|
|
|
|
* math/nearbyintq.c: New file.
|
|
|
|
|
* math/fmaxq.c: New file.
|
|
|
|
|
* math/conjq.c: New file.
|
|
|
|
|
* math/remquoq.c: New file.
|
|
|
|
|
* math/cimagq.c: New file.
|
|
|
|
|
* math/fdimq.c: New file.
|
|
|
|
|
|
|
|
|
|
* math/ldexpq.c: Include errno.h. Set errno to ERANGE if needed.
|
|
|
|
|
|
re PR fortran/46416 (libquadmath: missing functions)
PR fortran/46416
* quadmath.h (cacosq, cacoshq, casinq, casinhq, catanq, catanhq):
New prototypes.
(M_Eq, M_LOG2Eq, M_LOG10Eq, M_LN2q, M_LN10q, M_PIq, M_PI_2q, M_PI_4q,
M_1_PIq, M_2_PIq, M_2_SQRTPIq, M_SQRT2q, M_SQRT1_2q): Define.
* quadmath_weak.h (cacosq, cacoshq, casinq, casinhq, catanq,
catanhq): Add.
* quadmath-imp.h (fpclassifyq, QUADFP_NAN, QUADFP_INFINITE,
QUADFP_ZERO, QUADFP_SUBNORMAL, QUADFP_NORMAL): Define.
* quadmath.map (QUADMATH_1.0): Add cacosq, cacoshq, casinq, casinhq,
catanq and catanhq.
* Makefile.am (libquadmath_la_SOURCES): Add math/cacosq.c,
math/cacoshq.c, math/casinq.c, math/casinhq.c, math/catanq.c
and math/catanhq.c.
* Makefile.in: Regenerated.
* libquadmath.texi (cacosq, cacoshq, casinq, casinhq,
catanq, catanhq): Add.
* math/cacoshq.c: New file.
* math/cacosq.c: New file.
* math/catanq.c: New file.
* math/catanhq.c: New file.
* math/casinq.c: New file.
* math/casinhq.c: New file.
* math/hypotq.c (hypotq): Use Q suffix instead of L.
* math/atan2q.c (tiny, pi_o_4, pi_o_2, pi, pi_lo, atan2q): Likewise.
* math/cosq.c (cosq): Likewise.
From-SVN: r168853
2011-01-16 17:42:37 +01:00
|
|
|
|
PR fortran/46416
|
|
|
|
|
* quadmath.h (cacosq, cacoshq, casinq, casinhq, catanq, catanhq):
|
|
|
|
|
New prototypes.
|
|
|
|
|
(M_Eq, M_LOG2Eq, M_LOG10Eq, M_LN2q, M_LN10q, M_PIq, M_PI_2q, M_PI_4q,
|
|
|
|
|
M_1_PIq, M_2_PIq, M_2_SQRTPIq, M_SQRT2q, M_SQRT1_2q): Define.
|
|
|
|
|
* quadmath_weak.h (cacosq, cacoshq, casinq, casinhq, catanq,
|
|
|
|
|
catanhq): Add.
|
|
|
|
|
* quadmath-imp.h (fpclassifyq, QUADFP_NAN, QUADFP_INFINITE,
|
|
|
|
|
QUADFP_ZERO, QUADFP_SUBNORMAL, QUADFP_NORMAL): Define.
|
|
|
|
|
* quadmath.map (QUADMATH_1.0): Add cacosq, cacoshq, casinq, casinhq,
|
|
|
|
|
catanq and catanhq.
|
|
|
|
|
* Makefile.am (libquadmath_la_SOURCES): Add math/cacosq.c,
|
|
|
|
|
math/cacoshq.c, math/casinq.c, math/casinhq.c, math/catanq.c
|
|
|
|
|
and math/catanhq.c.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
* libquadmath.texi (cacosq, cacoshq, casinq, casinhq,
|
|
|
|
|
catanq, catanhq): Add.
|
|
|
|
|
* math/cacoshq.c: New file.
|
|
|
|
|
* math/cacosq.c: New file.
|
|
|
|
|
* math/catanq.c: New file.
|
|
|
|
|
* math/catanhq.c: New file.
|
|
|
|
|
* math/casinq.c: New file.
|
|
|
|
|
* math/casinhq.c: New file.
|
|
|
|
|
|
|
|
|
|
* math/hypotq.c (hypotq): Use Q suffix instead of L.
|
|
|
|
|
* math/atan2q.c (tiny, pi_o_4, pi_o_2, pi, pi_lo, atan2q): Likewise.
|
|
|
|
|
* math/cosq.c (cosq): Likewise.
|
|
|
|
|
|
2011-01-16 17:40:05 +01:00
|
|
|
|
PR fortran/46402
|
|
|
|
|
* quadmath.map (QUADMATH_1.0): Add fmaq.
|
|
|
|
|
* configure.ac: Check for fenv.h, feholdexcept, fesetround,
|
|
|
|
|
feupdateenv, fesetenv and fetestexcept.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
* config.h.in: Regenerated.
|
|
|
|
|
* quadmath.h (fmaq): New prototype.
|
|
|
|
|
* quadmath_weak.h (fmaq): Add.
|
|
|
|
|
* Makefile.am (libquadmath_la_SOURCES): Add math/fmaq.c.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
* quadmath-imp.h: Include config.h.
|
|
|
|
|
* math/expq.c: Include fenv.h.
|
|
|
|
|
(USE_FENV_H): Define if libm support for fe* is there.
|
|
|
|
|
(expq): Add fesetround etc. support if USE_FENV_H is defined.
|
|
|
|
|
* math/fmaq.c: New file.
|
|
|
|
|
* libquadmath.texi (fmaq): Add.
|
|
|
|
|
|
2011-01-14 08:18:54 +01:00
|
|
|
|
2011-01-14 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/47182
|
|
|
|
|
* configure.ac: Use ACX_BUGURL.
|
|
|
|
|
* libquadmath.texi: Include libquadmath-vers.texi for BUGURL.
|
|
|
|
|
* Makefile.am: Create libquadmath-vers.texi.
|
|
|
|
|
* configure.in: Regenerate.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
|
2011-01-06 23:09:41 +01:00
|
|
|
|
2011-01-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/47174
|
|
|
|
|
* Makefile.am (libquadmath.info): Unconditionally override
|
|
|
|
|
target, not only if BUILD_LIBQUADMATH.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
* configure.ac (AM_INIT_AUTOMAKE): Add -Wno-override option to
|
|
|
|
|
avoid warning from automake.
|
|
|
|
|
|
2010-12-19 20:01:38 +01:00
|
|
|
|
2010-12-19 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46520
|
|
|
|
|
* configure.ac: Do not call AC_CHECK_LIB for gcc_no_link.
|
|
|
|
|
* configure: Regenerate
|
|
|
|
|
|
2010-12-13 20:44:38 +01:00
|
|
|
|
2010-12-13 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46625
|
|
|
|
|
* gdtoa/gdtoaimp.h: Mangle internal functions by
|
|
|
|
|
prefixing them with __quadmath. Don't use gdtoa's strcp(y).
|
|
|
|
|
* gdtoa/g_Qfmt.c (g_Qfmt): Use strcpy instead of strcp.
|
|
|
|
|
* gdtoa/misc.c (strcpy): Renamed from strcp and only use
|
|
|
|
|
if NO_STRING_H is set.
|
|
|
|
|
* quadmath-imp.h (__quadmath_rem_pio2q, __quadmath_kernel_sincosq
|
|
|
|
|
__quadmath_kernel_sinq, __quadmath_kernel_cosq): Added
|
|
|
|
|
__quadmath prefix to internal functions.
|
|
|
|
|
* math/cosq.c (cosq): Ditto.
|
|
|
|
|
* math/sinq.c (cosq): Ditto.
|
|
|
|
|
* math/tanq.c (tanq,__quadmath_kernel_tanq): Ditto.
|
|
|
|
|
* math/rem_pio2q.c (rem_pio2, __quadmath_kernel_rem_pio2): Ditto.
|
|
|
|
|
* math/sinq_kernel.c (__quadmath_kernel_sinq): Ditto.
|
|
|
|
|
* math/cosq_kernel.c (__quadmath_kernel_cosq): Ditto.
|
|
|
|
|
|
2010-12-08 23:35:52 +01:00
|
|
|
|
2010-12-08 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46772
|
|
|
|
|
* gdtoa/gdtoa.h: Include stdlib.h instead of declare strtod.
|
|
|
|
|
* gdtoa/gdtoaimp.h: Don't declare strtod.
|
|
|
|
|
|
2010-12-08 22:04:45 +01:00
|
|
|
|
2010-12-08 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46520
|
|
|
|
|
* configure.ac: Use GCC_TRY_COMPILE_OR_LINK instead of
|
|
|
|
|
AC_TRY_LINK and cache libquad_have_float128.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2010-12-08 09:06:49 +01:00
|
|
|
|
2010-12-08 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46543
|
|
|
|
|
* configure.ac: Add texinfo checks.
|
|
|
|
|
* Makefile.am: Handle .texi documentation.
|
|
|
|
|
* libquadmath.texi: New.
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
|
2010-12-07 00:06:48 +01:00
|
|
|
|
2010-12-06 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46817
|
|
|
|
|
* quadmath-imp.h: Add LGPL header.
|
|
|
|
|
* quadmath.h: Add LGPL header.
|
|
|
|
|
* quadmath_io.c: Add LGPL header.
|
|
|
|
|
* quadmath_weak.h: Add LGPL header.
|
|
|
|
|
|
2010-12-06 01:50:04 +01:00
|
|
|
|
2010-12-06 Dave Korn <dave.korn.cygwin@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR target/40125
|
|
|
|
|
PR lto/46695
|
|
|
|
|
* configure.ac: Invoke ACX_LT_HOST_FLAGS.
|
|
|
|
|
* Makefile.am (libquadmath_la_LDFLAGS): Use lt_host_flags.
|
|
|
|
|
* aclocal.m4: Regenerate.
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
|
2010-11-30 13:58:42 +01:00
|
|
|
|
2010-11-30 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/46594
|
|
|
|
|
* Makefile.am: Install include files in
|
|
|
|
|
target/version specific directory.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
|
2010-11-30 07:07:54 +01:00
|
|
|
|
2010-11-30 Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
* acinclude.m4 (LIBGOMP_CHECK_SYNC_BUILTINS,
|
|
|
|
|
LIBGOMP_CHECK_ATTRIBUTE_VISIBILITY,
|
|
|
|
|
LIBGOMP_CHECK_ATTRIBUTE_DLLEXPORT): Remove.
|
|
|
|
|
|
2010-11-29 18:52:24 +01:00
|
|
|
|
2010-11-29 Kai Tietz <kai.tietz@onevision.com>
|
|
|
|
|
|
|
|
|
|
* configure: Regenerated.
|
|
|
|
|
* Makefile.in: Regenerated.
|
|
|
|
|
* configure.ac (ACX_NONCANONICAL_TARGET): Call it.
|
|
|
|
|
(target_alias): Use AC_SUBST for it.
|
|
|
|
|
(GCC_NO_EXECUTABLES): Call it.
|
|
|
|
|
(AC_PROG_CC): Improve multilib handling.
|
|
|
|
|
Check that gcc is used for compilation.
|
|
|
|
|
Use pattern from libssp for symbol versioning checking.
|
|
|
|
|
* Makefile.am (LTLDFLAGS): Removed.
|
|
|
|
|
(libquadmath_la_LDFLAGS): Add -no-undefined.
|
|
|
|
|
(libquadmath_la_LINK): Commented out.
|
|
|
|
|
(libquadmath_la_DEPENDENCIES): Add libquadmath_la_LIBADD.
|
|
|
|
|
(AM_MAKEFLAGS): Add hack for argument passing by top-level.
|
|
|
|
|
(MAKEOVERRIDES): New.
|
|
|
|
|
* aclocal.m4: Regenerated.
|
|
|
|
|
|
2010-11-19 13:13:13 +01:00
|
|
|
|
2010-11-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
|
|
|
|
|
|
|
|
|
* Makefile.am (libquadmath_la_LIBADD): Move -lm ...
|
|
|
|
|
(libquadmath_la_LDFLAGS): ... here.
|
|
|
|
|
(quadmath.map-sun): Tabify.
|
|
|
|
|
Fix sed expression.
|
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
|
|
2010-11-16 22:23:19 +01:00
|
|
|
|
2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
|
|
|
Tobias Burnus <burnus@net-b.de>
|
|
|
|
|
|
|
|
|
|
PR fortran/32049
|
|
|
|
|
Initial implementation and checkin.
|
2016-01-04 14:03:35 +01:00
|
|
|
|
|
2018-01-03 11:03:58 +01:00
|
|
|
|
Copyright (C) 2010-2018 Free Software Foundation, Inc.
|
2016-01-04 14:03:35 +01:00
|
|
|
|
|
|
|
|
|
Copying and distribution of this file, with or without modification,
|
|
|
|
|
are permitted in any medium without royalty provided the copyright
|
|
|
|
|
notice and this notice are preserved.
|