diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2004-08-23 08:47:08 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2004-08-23 08:47:08 +0000 |
commit | be88a6281e3462ff2c6bf11aa32ea777de029124 (patch) | |
tree | 5d3b1898069b4a5386b068a0d2c742f4e6239425 /gcc/stor-layout.c | |
parent | 8dd16ecc7d71b9f1e1bdc4d870cf2436db9594a9 (diff) | |
download | gcc-be88a6281e3462ff2c6bf11aa32ea777de029124.zip gcc-be88a6281e3462ff2c6bf11aa32ea777de029124.tar.gz gcc-be88a6281e3462ff2c6bf11aa32ea777de029124.tar.bz2 |
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
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 4 |
1 files changed, 0 insertions, 4 deletions
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"); |