From: Matt Kraai Date: Wed, 28 Feb 2007 00:56:22 +0000 (+0000) Subject: configure: Regenerate. X-Git-Tag: releases/gcc-4.3.0~6562 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54e433bc4f9fc8389f23d3febe63ce9413a57e88;p=thirdparty%2Fgcc.git configure: Regenerate. * configure: Regenerate. * configure.ac: Move statements after variable declarations. From-SVN: r122397 --- diff --git a/ChangeLog b/ChangeLog index 28375a32ccb0..70ac4cc48506 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-02-27 Matt Kraai + + * configure: Regenerate. + * configure.ac: Move statements after variable declarations. + 2007-02-19 Kaz Kojima * MAINTAINERS: Add myself as sh maintainer. diff --git a/configure b/configure index f5b4778c90d9..5e6f850317f7 100755 --- a/configure +++ b/configure @@ -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); diff --git a/configure.ac b/configure.ac index 3604ad745940..09c1bef35732 100644 --- a/configure.ac +++ b/configure.ac @@ -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);