From be88a6281e3462ff2c6bf11aa32ea777de029124 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Mon, 23 Aug 2004 08:47:08 +0000 Subject: tree.h (enum size_type_kind): Remove USIZETYPE, UBITSIZETYPE. * 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. From-SVN: r86422 --- gcc/stor-layout.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'gcc/stor-layout.c') diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 19de9b6..7f188f2 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"); -- cgit v1.1