Commit 8208d7dc by Daniel Jacobowitz Committed by Daniel Jacobowitz

class.c (build_ctor_vtbl_group): Lay out the new type and decl.

	* class.c (build_ctor_vtbl_group): Lay out the new type and decl.

	* g++.dg/opt/anchor1.C: New.

From-SVN: r129997
parent 0a485bae
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> 2007-11-07 Douglas Gregor <doug.gregor@gmail.com>
PR c++/33045 PR c++/33045
......
...@@ -7006,7 +7006,10 @@ build_ctor_vtbl_group (tree binfo, tree t) ...@@ -7006,7 +7006,10 @@ build_ctor_vtbl_group (tree binfo, tree t)
/* Figure out the type of the construction vtable. */ /* Figure out the type of the construction vtable. */
type = build_index_type (size_int (list_length (inits) - 1)); type = build_index_type (size_int (list_length (inits) - 1));
type = build_cplus_array_type (vtable_entry_type, type); type = build_cplus_array_type (vtable_entry_type, type);
layout_type (type);
TREE_TYPE (vtbl) = type; TREE_TYPE (vtbl) = type;
DECL_SIZE (vtbl) = DECL_SIZE_UNIT (vtbl) = NULL_TREE;
layout_decl (vtbl, 0);
/* Initialize the construction vtable. */ /* Initialize the construction vtable. */
CLASSTYPE_VTABLES (t) = chainon (CLASSTYPE_VTABLES (t), vtbl); CLASSTYPE_VTABLES (t) = chainon (CLASSTYPE_VTABLES (t), vtbl);
......
2007-11-08 Daniel Jacobowitz <dan@codesourcery.com>
* g++.dg/opt/anchor1.C: New.
2007-11-07 Diego Novillo <dnovillo@google.com> 2007-11-07 Diego Novillo <dnovillo@google.com>
PR 33870 PR 33870
// { 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment