configure: Regenerate.
* configure: Regenerate. * configure.ac: Move statements after variable declarations. From-SVN: r122397
This commit is contained in:
parent
3b1bf459a3
commit
54e433bc4f
@ -1,3 +1,8 @@
|
||||
2007-02-27 Matt Kraai <kraai@ftbfs.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
* configure.ac: Move statements after variable declarations.
|
||||
|
||||
2007-02-19 Kaz Kojima <kkojima@gcc.gnu.org>
|
||||
|
||||
* MAINTAINERS: Add myself as sh maintainer.
|
||||
|
6
configure
vendored
6
configure
vendored
@ -4476,9 +4476,11 @@ main ()
|
||||
#if MPFR_VERSION < MPFR_VERSION_NUM(2,2,0)
|
||||
choke me
|
||||
#endif
|
||||
mpfr_t n; mpfr_init(n);
|
||||
mpfr_t x; mpfr_init(x);
|
||||
mpfr_t n;
|
||||
mpfr_t x;
|
||||
int t;
|
||||
mpfr_init (n);
|
||||
mpfr_init (x);
|
||||
mpfr_atan2 (n, n, x, GMP_RNDN);
|
||||
mpfr_erfc (n, x, GMP_RNDN);
|
||||
mpfr_subnormalize (x, t, GMP_RNDN);
|
||||
|
@ -1163,9 +1163,11 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
|
||||
#if MPFR_VERSION < MPFR_VERSION_NUM(2,2,0)
|
||||
choke me
|
||||
#endif
|
||||
mpfr_t n; mpfr_init(n);
|
||||
mpfr_t x; mpfr_init(x);
|
||||
mpfr_t n;
|
||||
mpfr_t x;
|
||||
int t;
|
||||
mpfr_init (n);
|
||||
mpfr_init (x);
|
||||
mpfr_atan2 (n, n, x, GMP_RNDN);
|
||||
mpfr_erfc (n, x, GMP_RNDN);
|
||||
mpfr_subnormalize (x, t, GMP_RNDN);
|
||||
|
Loading…
Reference in New Issue
Block a user