Commit 54e433bc by Matt Kraai Committed by Matt Kraai

configure: Regenerate.

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

From-SVN: r122397
parent 3b1bf459
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> 2007-02-19 Kaz Kojima <kkojima@gcc.gnu.org>
* MAINTAINERS: Add myself as sh maintainer. * MAINTAINERS: Add myself as sh maintainer.
......
...@@ -4476,9 +4476,11 @@ main () ...@@ -4476,9 +4476,11 @@ main ()
#if MPFR_VERSION < MPFR_VERSION_NUM(2,2,0) #if MPFR_VERSION < MPFR_VERSION_NUM(2,2,0)
choke me choke me
#endif #endif
mpfr_t n; mpfr_init(n); mpfr_t n;
mpfr_t x; mpfr_init(x); mpfr_t x;
int t; int t;
mpfr_init (n);
mpfr_init (x);
mpfr_atan2 (n, n, x, GMP_RNDN); mpfr_atan2 (n, n, x, GMP_RNDN);
mpfr_erfc (n, x, GMP_RNDN); mpfr_erfc (n, x, GMP_RNDN);
mpfr_subnormalize (x, t, GMP_RNDN); mpfr_subnormalize (x, t, GMP_RNDN);
......
...@@ -1163,9 +1163,11 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then ...@@ -1163,9 +1163,11 @@ if test -d ${srcdir}/gcc && test "x$have_gmp" = xno; then
#if MPFR_VERSION < MPFR_VERSION_NUM(2,2,0) #if MPFR_VERSION < MPFR_VERSION_NUM(2,2,0)
choke me choke me
#endif #endif
mpfr_t n; mpfr_init(n); mpfr_t n;
mpfr_t x; mpfr_init(x); mpfr_t x;
int t; int t;
mpfr_init (n);
mpfr_init (x);
mpfr_atan2 (n, n, x, GMP_RNDN); mpfr_atan2 (n, n, x, GMP_RNDN);
mpfr_erfc (n, x, GMP_RNDN); mpfr_erfc (n, x, GMP_RNDN);
mpfr_subnormalize (x, t, GMP_RNDN); mpfr_subnormalize (x, t, GMP_RNDN);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment