aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorZdenek Dvorak <dvorakz@suse.cz>2006-03-03 01:38:20 +0100
committerZdenek Dvorak <rakdver@gcc.gnu.org>2006-03-03 00:38:20 +0000
commitf82783bddac324321fa535d219d345ab0aa3b892 (patch)
tree5f4ce06a46059b33cacd4d5c9a4b58ab6147793f /gcc/tree.h
parent778f0e89180557c7817da8cbb4876dd1ceb18888 (diff)
downloadgcc-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/tree.h')
-rw-r--r--gcc/tree.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index be7f5d8..963569c 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -1239,13 +1239,7 @@ extern void omp_clause_range_check_failed (const tree, const char *, int,
struct tree_int_cst GTY(())
{
struct tree_common common;
- /* A sub-struct is necessary here because the function `const_hash'
- wants to scan both words as a unit and taking the address of the
- sub-struct yields the properly inclusive bounded pointer. */
- struct tree_int_cst_lowhi {
- unsigned HOST_WIDE_INT low;
- HOST_WIDE_INT high;
- } int_cst;
+ double_int int_cst;
};
/* In a REAL_CST node. struct real_value is an opaque entity, with