From af73997c2926211d80000c25c1603cddcf896743 Mon Sep 17 00:00:00 2001 From: Ollie Wild Date: Fri, 4 Apr 2008 17:46:10 +0000 Subject: gcc/cp/ * class.c (layout_class_type): Rename c_build_bitfield_integer_type to make_bitfield_integer_type. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/lto@133904 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/ChangeLog.lto | 5 +++++ gcc/cp/class.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/cp/ChangeLog.lto b/gcc/cp/ChangeLog.lto index f5e84ddb50b..3e279602716 100644 --- a/gcc/cp/ChangeLog.lto +++ b/gcc/cp/ChangeLog.lto @@ -1,3 +1,8 @@ +2008-04-04 Ollie Wild + + * class.c (layout_class_type): Rename c_build_bitfield_integer_type to + make_bitfield_integer_type. + 2007-11-16 Nathan Froyd * class.c (layout_class_type): Use make_bitfield_integer_type. diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 154c3b3fc37..9222e7e982d 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -4877,8 +4877,8 @@ layout_class_type (tree t, tree *virtuals_p) if (width != TYPE_PRECISION (ftype)) { TREE_TYPE (field) - = c_build_bitfield_integer_type (width, - TYPE_UNSIGNED (ftype)); + = make_bitfield_integer_type (width, + TYPE_UNSIGNED (ftype)); TREE_TYPE (field) = cp_build_qualified_type (TREE_TYPE (field), TYPE_QUALS (ftype)); -- cgit v1.2.3