summaryrefslogtreecommitdiff
path: root/gcc/stor-layout.c
diff options
context:
space:
mode:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2004-08-23 08:47:08 +0000
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2004-08-23 08:47:08 +0000
commite2134ab31c55d406277fe5ca4b9512d7fefbf63f (patch)
tree5d3b1898069b4a5386b068a0d2c742f4e6239425 /gcc/stor-layout.c
parente086912ef49705e0884bb4d8db71a444bedaa4fd (diff)
downloadgcc-e2134ab31c55d406277fe5ca4b9512d7fefbf63f.tar.gz
* tree.h (enum size_type_kind): Remove USIZETYPE, UBITSIZETYPE.
(usize_type, ubitsizetype): Remove. * stor-layout.c (set_sizetype): Don't initialize usizetype, ubitsizetype. * fold-const.c (size_diffop): TYPE can never be ubitsizetype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86422 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r--gcc/stor-layout.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index 19de9b6d0a4..7f188f27839 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -1921,8 +1921,6 @@ set_sizetype (tree type)
if (TYPE_UNSIGNED (type))
{
- usizetype = sizetype;
- ubitsizetype = bitsizetype;
ssizetype = copy_node (make_signed_type (oprecision));
sbitsizetype = copy_node (make_signed_type (precision));
}
@@ -1930,8 +1928,6 @@ set_sizetype (tree type)
{
ssizetype = sizetype;
sbitsizetype = bitsizetype;
- usizetype = copy_node (make_unsigned_type (oprecision));
- ubitsizetype = copy_node (make_unsigned_type (precision));
}
TYPE_NAME (bitsizetype) = get_identifier ("bit_size_type");