From 23ccd1f3be5147abf399cc0c09452b6635dece20 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Wed, 4 Sep 2002 10:50:16 +0200 Subject: [PATCH] decl.c (start_cleanup_fn): Clear interface_only before start_function, restore it afterwards. * decl.c (start_cleanup_fn): Clear interface_only before start_function, restore it afterwards. * g++.dg/other/cxa-atexit1.C: New test. From-SVN: r56790 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/decl.c | 3 +++ gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/g++.dg/other/cxa-atexit1.C | 26 ++++++++++++++++++++++++ 4 files changed, 38 insertions(+) create mode 100644 gcc/testsuite/g++.dg/other/cxa-atexit1.C diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 5a4ce9762e5..c701767f0eb 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2002-09-04 Jakub Jelinek + + * decl.c (start_cleanup_fn): Clear interface_only before + start_function, restore it afterwards. + 2002-08-31 Jason Merrill * cp-lang.c (cp_expr_size): Allow initialization from a diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index bb0abbdf83f..f3b4d8756cc 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -8445,6 +8445,7 @@ static tree start_cleanup_fn () { static int counter = 0; + int old_interface_only = interface_only; int old_interface_unknown = interface_unknown; char name[32]; tree parmtypes; @@ -8456,6 +8457,7 @@ start_cleanup_fn () /* No need to mangle this. */ push_lang_context (lang_name_c); + interface_only = 0; interface_unknown = 1; /* Build the parameter-types. */ @@ -8496,6 +8498,7 @@ start_cleanup_fn () start_function (/*specs=*/NULL_TREE, fndecl, NULL_TREE, SF_PRE_PARSED); interface_unknown = old_interface_unknown; + interface_only = old_interface_only; pop_lang_context (); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b1f4655c3e5..c4900bdf74f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-09-04 Jakub Jelinek + + * g++.dg/other/cxa-atexit1.C: New test. + 2002-09-03 Neil Booth * gcc.dg/cpp/_Pragma4.c: New test. diff --git a/gcc/testsuite/g++.dg/other/cxa-atexit1.C b/gcc/testsuite/g++.dg/other/cxa-atexit1.C new file mode 100644 index 00000000000..a51f3340142 --- /dev/null +++ b/gcc/testsuite/g++.dg/other/cxa-atexit1.C @@ -0,0 +1,26 @@ +// { dg-do compile } +// { dg-options "-O2 -fuse-cxa-atexit" } + +# 1 "cxa-atexit1.C" +struct A +{ + struct B + { + B (); + ~B (); + }; +}; +static A::B b; +# 1 "cxa-atexit1.h" 1 +#pragma interface +template struct C +{ + ~C (void); +}; +struct D : public C +{ + D (void) : C () { } +}; +# 55 "cxa-atexit1.C" 2 + +// { dg-final { scan-assembler-not ".gnu.linkonce.t.__tcf_" } }