diff options
Diffstat (limited to 'gcc/fortran/class.c')
-rw-r--r-- | gcc/fortran/class.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/fortran/class.c b/gcc/fortran/class.c index 71065d2..5943ab8 100644 --- a/gcc/fortran/class.c +++ b/gcc/fortran/class.c @@ -1624,7 +1624,9 @@ gfc_find_derived_vtab (gfc_symbol *derived) components and the calls to finalization subroutines. Note: The actual wrapper function can only be generated at resolution time. */ - + /* FIXME: Enable ABI-breaking "_final" generation. */ + if (0) + { if (gfc_add_component (vtype, "_final", &c) == FAILURE) goto cleanup; c->attr.proc_pointer = 1; @@ -1636,6 +1638,7 @@ gfc_find_derived_vtab (gfc_symbol *derived) /* Add procedure pointers for type-bound procedures. */ add_procs_to_declared_vtab (derived, vtype); } + } have_vtype: vtab->ts.u.derived = vtype; |