diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-08 19:10:25 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-08 19:10:25 +0000 |
commit | e506f1d4e2235303d0ad1b52ac0fd4484a4f5b1f (patch) | |
tree | 8da9730c286292669f3782559a5bce0322051a59 /gcc/double-int.h | |
parent | f3121112db9eef65e4eb7fff651b4da22fe271b2 (diff) | |
download | gcc-e506f1d4e2235303d0ad1b52ac0fd4484a4f5b1f.tar.gz |
gcc/
PR bootstrap/35051
* double-int.h: Don't include gmp.h for GENERATOR_FILEs.
(mpz_set_double_int, mpz_get_double_int): Hide from GENERATOR_FILEs.
* real.h: Don't include gmp.h or mpfr.h for GENERATOR_FILEs.
(real_from_mpfr, mpfr_from_real): Hide from GENERATOR_FILEs.
* tree.h (get_type_static_bounds): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132188 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/double-int.h')
-rw-r--r-- | gcc/double-int.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/double-int.h b/gcc/double-int.h index e82c37ee6d2..df82688e6b6 100644 --- a/gcc/double-int.h +++ b/gcc/double-int.h @@ -20,7 +20,9 @@ along with GCC; see the file COPYING3. If not see #ifndef DOUBLE_INT_H #define DOUBLE_INT_H +#ifndef GENERATOR_FILE #include <gmp.h> +#endif #include "coretypes.h" /* A large integer is currently represented as a pair of HOST_WIDE_INTs. @@ -176,10 +178,11 @@ double_int_equal_p (double_int cst1, double_int cst2) return cst1.low == cst2.low && cst1.high == cst2.high; } +#ifndef GENERATOR_FILE /* Conversion to and from GMP integer representations. */ void mpz_set_double_int (mpz_t, double_int, bool); double_int mpz_get_double_int (const_tree, mpz_t, bool); - +#endif #endif /* DOUBLE_INT_H */ |