configure: Regenerate.
authorMatt Kraai <kraai@ftbfs.org>
Wed, 28 Feb 2007 00:56:22 +0000 (00:56 +0000)
committerMatt Kraai <kraai@gcc.gnu.org>
Wed, 28 Feb 2007 00:56:22 +0000 (00:56 +0000)
* configure: Regenerate.
* configure.ac: Move statements after variable declarations.

From-SVN: r122397

ChangeLog
configure
configure.ac

index 28375a3..70ac4cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index f5b4778..5e6f850 100755 (executable)
--- 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);
index 3604ad7..09c1bef 100644 (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);