From: Diego Novillo Date: Thu, 16 Aug 2012 18:24:22 +0000 (-0400) Subject: revert: re PR bootstrap/54281 (Fails to bootstrap with --disable-nls) X-Git-Tag: misc/gccgo-go1_1_2~1346 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c76b723d23c2976d2275bb20122f1655b418eb3;p=thirdparty%2Fgcc.git revert: re PR bootstrap/54281 (Fails to bootstrap with --disable-nls) 2012-08-16 Diego Novillo Revert PR bootstrap/54281 * double-int.h: Move including of gmp.h ... * system.h: ... here. * realmpfr.h: Do not include gmp.h. * tree-ssa-loop-niter.c: Do not include gmp.h. From-SVN: r190449 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aeabc5159b6b..a8ff00d9b676 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,13 @@ +2012-08-16 Diego Novillo + + Revert + + PR bootstrap/54281 + * double-int.h: Move including of gmp.h ... + * system.h: ... here. + * realmpfr.h: Do not include gmp.h. + * tree-ssa-loop-niter.c: Do not include gmp.h. + 2012-08-16 Segher Boessenkool * config/rs6000/darwin.h (TARGET_IEEE_QUAD): Fix comment. diff --git a/gcc/double-int.h b/gcc/double-int.h index 7ea05288b9eb..3d9aa2caa9de 100644 --- a/gcc/double-int.h +++ b/gcc/double-int.h @@ -20,6 +20,10 @@ along with GCC; see the file COPYING3. If not see #ifndef DOUBLE_INT_H #define DOUBLE_INT_H +#ifndef GENERATOR_FILE +#include +#endif + /* A large integer is currently represented as a pair of HOST_WIDE_INTs. It therefore represents a number with precision of 2 * HOST_BITS_PER_WIDE_INT bits (it is however possible that the diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 25b276b4108e..f066e5590539 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,10 @@ +2012-08-16 Diego Novillo + + Revert + + PR bootstrap/54281 + * gfortran.h: Do not include gmp.h. + 2012-08-16 Diego Novillo PR bootstrap/54281 diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h index 611d16d265d2..7c4c0a42bf08 100644 --- a/gcc/fortran/gfortran.h +++ b/gcc/fortran/gfortran.h @@ -1681,6 +1681,7 @@ gfc_intrinsic_sym; EXPR_COMPCALL Function (or subroutine) call of a procedure pointer component or type-bound procedure. */ +#include #include #include #define GFC_RND_MODE GMP_RNDN diff --git a/gcc/realmpfr.h b/gcc/realmpfr.h index ada876e28546..ab234e9195d4 100644 --- a/gcc/realmpfr.h +++ b/gcc/realmpfr.h @@ -22,10 +22,7 @@ #ifndef GCC_REALGMP_H #define GCC_REALGMP_H -/* Note that we do not include gmp.h. It is included in system.h - because it wrecks intl.h when compiling in C++ mode. - See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54281 for details. */ - +#include #include #include #include "real.h" diff --git a/gcc/system.h b/gcc/system.h index 0ccd9917b94a..9e7d5030465b 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -1037,8 +1037,4 @@ helper_const_non_const_cast (const char *p) #define DEBUG_VARIABLE #endif -#ifndef GENERATOR_FILE -#include -#endif - #endif /* ! GCC_SYSTEM_H */ diff --git a/gcc/tree-ssa-loop-niter.c b/gcc/tree-ssa-loop-niter.c index 38b47b0b656a..8f1e2b4a964a 100644 --- a/gcc/tree-ssa-loop-niter.c +++ b/gcc/tree-ssa-loop-niter.c @@ -38,6 +38,7 @@ along with GCC; see the file COPYING3. If not see #include "flags.h" #include "diagnostic-core.h" #include "tree-inline.h" +#include "gmp.h" #define SWAP(X, Y) do { affine_iv *tmp = (X); (X) = (Y); (Y) = tmp; } while (0)