X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fdouble-int.h;h=d35a52cb0831b403073599b9c08be6a4170bb055;hb=d5b1913542065b28d14e32b427bb95a4aeea37df;hp=e82c37ee6d28e67dfdaccfc0a70eefaf71df0409;hpb=1f1872fdb0abb413ab6da9fd4f6adce363673c02;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/double-int.h b/gcc/double-int.h index e82c37ee6d2..d35a52cb083 100644 --- a/gcc/double-int.h +++ b/gcc/double-int.h @@ -1,5 +1,5 @@ /* Operations with long integers. - Copyright (C) 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. This file is part of GCC. @@ -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 +#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 */