diff options
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 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"); |