OSDN Git Service

* class.c (build_ctor_vtbl_group): Lay out the new type and decl.
authordrow <drow@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Nov 2007 12:48:28 +0000 (12:48 +0000)
committerdrow <drow@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Nov 2007 12:48:28 +0000 (12:48 +0000)
* g++.dg/opt/anchor1.C: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129997 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/class.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/opt/anchor1.C [new file with mode: 0644]

index a294e76..e28f582 100644 (file)
@@ -1,3 +1,7 @@
+2007-11-08  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * class.c (build_ctor_vtbl_group): Lay out the new type and decl.
+
 2007-11-07  Douglas Gregor  <doug.gregor@gmail.com>
 
        PR c++/33045
index e468db3..6e67157 100644 (file)
@@ -7006,7 +7006,10 @@ build_ctor_vtbl_group (tree binfo, tree t)
   /* Figure out the type of the construction vtable.  */
   type = build_index_type (size_int (list_length (inits) - 1));
   type = build_cplus_array_type (vtable_entry_type, type);
+  layout_type (type);
   TREE_TYPE (vtbl) = type;
+  DECL_SIZE (vtbl) = DECL_SIZE_UNIT (vtbl) = NULL_TREE;
+  layout_decl (vtbl, 0);
 
   /* Initialize the construction vtable.  */
   CLASSTYPE_VTABLES (t) = chainon (CLASSTYPE_VTABLES (t), vtbl);
index 2a863b9..fdbbb6b 100644 (file)
@@ -1,3 +1,7 @@
+2007-11-08  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * g++.dg/opt/anchor1.C: New.
+
 2007-11-07  Diego Novillo  <dnovillo@google.com>
 
        PR 33870
diff --git a/gcc/testsuite/g++.dg/opt/anchor1.C b/gcc/testsuite/g++.dg/opt/anchor1.C
new file mode 100644 (file)
index 0000000..5d30afb
--- /dev/null
@@ -0,0 +1,59 @@
+// { dg-do run }
+// { dg-options "-O2" }
+
+// The size of the construction vtable for YFont in YCoreFont was not
+// updated to reflect its actual size.  On targets with section anchor
+// support, the vtable for YCoreFont was laid out immediately after
+// that, but the compiler thought it was about 40 bytes closer to the
+// anchor than it actually was.
+
+extern "C" void abort (void);
+
+class refcounted {
+public:
+    int __refcount;
+
+public:
+    refcounted(): __refcount(0) {};
+    virtual ~refcounted() {}
+};
+
+class YFont : public virtual refcounted {
+public:
+    virtual ~YFont() {}
+
+    virtual int ascent() const = 0;
+};
+
+struct XFontStruct {
+};
+
+class YCoreFont : public YFont {
+public:
+    YCoreFont(char const * name);
+    virtual ~YCoreFont();
+
+    virtual int ascent() const { return 2; }
+
+private:
+    XFontStruct * fFont;
+};
+
+YCoreFont::YCoreFont(char const * name) {
+}
+
+YCoreFont::~YCoreFont() {
+}
+
+int foo(YCoreFont *ycf)
+{
+  ycf->ascent ();
+}
+
+int main()
+{
+  YCoreFont ycf("");
+  if (foo(&ycf) != 2)
+    abort ();
+  return 0;
+}