diff options
author | Matt Kraai <kraai@ftbfs.org> | 2007-02-28 00:56:22 +0000 |
---|---|---|
committer | Matt Kraai <kraai@gcc.gnu.org> | 2007-02-28 00:56:22 +0000 |
commit | 54e433bc4f9fc8389f23d3febe63ce9413a57e88 (patch) | |
tree | 034954132c1f887bca900af732584f05fbfa6f61 | |
parent | 3b1bf459a3d09dd633df8e4d4af1b813709a021b (diff) | |
download | gcc-54e433bc4f9fc8389f23d3febe63ce9413a57e88.zip gcc-54e433bc4f9fc8389f23d3febe63ce9413a57e88.tar.gz gcc-54e433bc4f9fc8389f23d3febe63ce9413a57e88.tar.bz2 |
configure: Regenerate.
* configure: Regenerate.
* configure.ac: Move statements after variable declarations.
From-SVN: r122397
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
3 files changed, 13 insertions, 4 deletions
@@ -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. @@ -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 3604ad7..09c1bef 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); |