diff options
| author | kraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-28 00:56:22 +0000 |
|---|---|---|
| committer | kraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-28 00:56:22 +0000 |
| commit | 78a477ad44f788cfcb7be8a854ffac02e1b32958 (patch) | |
| tree | 034954132c1f887bca900af732584f05fbfa6f61 | |
| parent | 6c6f16e501532212d779795772f8264f849447ab (diff) | |
| download | ppe42-gcc-78a477ad44f788cfcb7be8a854ffac02e1b32958.tar.gz ppe42-gcc-78a477ad44f788cfcb7be8a854ffac02e1b32958.zip | |
* configure: Regenerate.
* configure.ac: Move statements after variable declarations.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122397 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rwxr-xr-x | configure | 6 | ||||
| -rw-r--r-- | configure.ac | 6 |
3 files changed, 13 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 28375a32ccb..70ac4cc4850 100644 --- 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. diff --git a/configure b/configure index f5b4778c90d..5e6f850317f 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 3604ad74594..09c1bef3573 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); |

