From 0158370253d4aef042c4d67b2c0278ded58d83fd Mon Sep 17 00:00:00 2001 From: rsandifo Date: Wed, 4 Dec 2013 10:50:27 +0000 Subject: Add TREE_INT_CST_OFFSET_NUNITS. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@205660 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-core.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'gcc/tree-core.h') diff --git a/gcc/tree-core.h b/gcc/tree-core.h index ef8bb370917..e31d9b38f23 100644 --- a/gcc/tree-core.h +++ b/gcc/tree-core.h @@ -764,11 +764,17 @@ struct GTY(()) tree_base { struct { /* The number of HOST_WIDE_INTs if the INTEGER_CST is accessed in its native precision. */ - unsigned short unextended; + unsigned char unextended; /* The number of HOST_WIDE_INTs if the INTEGER_CST is extended to wider precisions based on its TYPE_SIGN. */ - unsigned short extended; + unsigned char extended; + + /* The number of HOST_WIDE_INTs if the INTEGER_CST is accessed in + offset_int precision, with smaller integers being extended + according to their TYPE_SIGN. This is equal to one of the two + fields above but is cached for speed. */ + unsigned char offset; } int_length; /* VEC length. This field is only used with TREE_VEC. */ -- cgit v1.2.1