diff options
author | Zdenek Dvorak <dvorakz@suse.cz> | 2006-03-03 01:38:20 +0100 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2006-03-03 00:38:20 +0000 |
commit | f82783bddac324321fa535d219d345ab0aa3b892 (patch) | |
tree | 5f4ce06a46059b33cacd4d5c9a4b58ab6147793f /gcc/system.h | |
parent | 778f0e89180557c7817da8cbb4876dd1ceb18888 (diff) | |
download | gcc-f82783bddac324321fa535d219d345ab0aa3b892.zip gcc-f82783bddac324321fa535d219d345ab0aa3b892.tar.gz gcc-f82783bddac324321fa535d219d345ab0aa3b892.tar.bz2 |
gengtype.c (main): Handle double_int type.
* gengtype.c (main): Handle double_int type.
* tree.h (struct tree_int_cst): Make type of int_cst double_int.
* double-int.c: New file.
* double-int.h: New file.
* system.h: Include doubleint.h.
* Makefile.in (SYSTEM_H): Include double-int.h.
(double-int.o): Add.
From-SVN: r111663
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/system.h b/gcc/system.h index 0769cde..d3100e1 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -609,6 +609,8 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; # define FALSE false #endif /* !__cplusplus */ +/* Get definition of double_int. */ +#include "double-int.h" /* Some compilers do not allow the use of unsigned char in bitfields. */ #define BOOL_BITFIELD unsigned int |