configure: Regenerate.

* configure: Regenerate.
	* configure.ac: Move statements after variable declarations.

From-SVN: r122397
This commit is contained in:
Matt Kraai 2007-02-28 00:56:22 +00:00 committed by Matt Kraai
parent 3b1bf459a3
commit 54e433bc4f
3 changed files with 13 additions and 4 deletions

View File

@ -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
View File

@ -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);

View File

@ -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);