diff options
Diffstat (limited to 'gcc/cp/class.c')
-rw-r--r-- | gcc/cp/class.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 3f56652f..dceeffe 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -5028,6 +5028,11 @@ finish_struct_1 (tree t) if (warn_overloaded_virtual) warn_hidden (t); + /* Class layout, assignment of virtual table slots, etc., is now + complete. Give the back end a chance to tweak the visibility of + the class or perform any other required target modifications. */ + targetm.cxx.adjust_class_at_definition (t); + maybe_suppress_debug_info (t); dump_class_hierarchy (t); |