aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOllie Wild <aaw@google.com>2008-04-04 17:46:10 +0000
committerOllie Wild <aaw@google.com>2008-04-04 17:46:10 +0000
commitaf73997c2926211d80000c25c1603cddcf896743 (patch)
tree52f4caedfedff9d1b4126cee3ce3eb1328cfa7f6
parentb20db367e47af1833f5cd6ae25975124d16c786d (diff)
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
-rw-r--r--gcc/cp/ChangeLog.lto5
-rw-r--r--gcc/cp/class.c4
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 <aaw@google.com>
+
+ * class.c (layout_class_type): Rename c_build_bitfield_integer_type to
+ make_bitfield_integer_type.
+
2007-11-16 Nathan Froyd <froydnj@codesourcery.com>
* 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));