diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-04-06 16:30:45 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-04-06 16:30:45 +0000 |
commit | 56e770bfd692d9cb6934d6b2f63b1368015aebfc (patch) | |
tree | 54067aefa5b18e7f59ae0b293a456fcf23aa9f82 /gcc/testsuite/g++.old-deja/g++.bugs | |
parent | 1573b93398d756b9bd523b523c5ddb3110a96e3a (diff) | |
download | gcc-56e770bfd692d9cb6934d6b2f63b1368015aebfc.tar.gz |
cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
* cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
(DECL_SAVED_INLINE): Rename to ...
(DECL_DEFERRED_FN): ... this.
(in_function_p): Remove declaration.
(mark_inline_for_output): Rename to ...
(defer_fn): ... this.
* decl.c (finish_function): Adjust call to mark_inline_for_output.
(in_function_p): Remove definition.
* decl2.c (saved_inlines): Rename to ...
(deferred_fns): ... this.
(saved_inlines_used): Rename to ...
(deferred_fns_used): ... this.
(mark_inline_for_output): Rename to ...
(defer_fn): ... this.
(finish_file): Adjust accordingly.
(init_decl2): Likewise.
* lex.c (cons_up_default_function): Likewise.
* pt.c (mark_decl_instantiated): Likewise.
(instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
circumstances.
* rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
* semantics.c (expand_body): Defer more functions.
From-SVN: r32973
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.bugs')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.bugs/900205_03.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.bugs/900205_03.C b/gcc/testsuite/g++.old-deja/g++.bugs/900205_03.C index 4c352c87ae4..a6249546d34 100644 --- a/gcc/testsuite/g++.old-deja/g++.bugs/900205_03.C +++ b/gcc/testsuite/g++.old-deja/g++.bugs/900205_03.C @@ -25,10 +25,10 @@ struct00 global_function_1 () { struct struct0 { int struct0_member_function_0 () { - } // ERROR - + } // ERROR - XFAIL struct0 struct0_member_function_1 () { - } // ERROR - + } // ERROR - XFAIL }; struct struct1 { |