From: rsandifo Date: Sun, 10 Nov 2013 10:10:29 +0000 (+0000) Subject: Rename wide_int_type_size_in_bits to offset_int_type_size_in_bits. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=316384cf448955d76cfaa6294f49499a2a91e925;p=thirdparty%2Fgcc.git Rename wide_int_type_size_in_bits to offset_int_type_size_in_bits. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@204626 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index dbd1154ac0ae..9c42217519b3 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -10402,10 +10402,10 @@ simple_type_size_in_bits (const_tree type) return TYPE_ALIGN (type); } -/* Similarly, but return a wide_int instead of UHWI. */ +/* Similarly, but return an offset_int instead of UHWI. */ static inline offset_int -wide_int_type_size_in_bits (const_tree type) +offset_int_type_size_in_bits (const_tree type) { if (TREE_CODE (type) == ERROR_MARK) return BITS_PER_WORD; @@ -14834,7 +14834,7 @@ field_byte_offset (const_tree decl) offset_int type_size_in_bits; type = field_type (decl); - type_size_in_bits = wide_int_type_size_in_bits (type); + type_size_in_bits = offset_int_type_size_in_bits (type); type_align_in_bits = simple_type_align_in_bits (type); field_size_tree = DECL_SIZE (decl);