decl.c (finish_function): Move the code for handling functions marked with the constructor and destructor...
* decl.c (finish_function): Move the code for handling functions marked with the constructor and destructor attributes inside the expand_p block. From-SVN: r36147
This commit is contained in:
parent
af7f0fde0b
commit
c9672d45dc
2 changed files with 21 additions and 8 deletions
|
@ -1,3 +1,9 @@
|
|||
2000-09-04 Mark Elbrecht <snowball3@bigfoot.com>
|
||||
|
||||
* decl.c (finish_function): Move the code for handling functions
|
||||
marked with the constructor and destructor attributes inside the
|
||||
expand_p block.
|
||||
|
||||
2000-09-04 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
|
||||
|
@ -15,16 +21,16 @@
|
|||
2000-09-03 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
|
||||
new ABI mangling.
|
||||
new ABI mangling.
|
||||
|
||||
2000-09-01 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
|
||||
union tag mismatch error reporting.
|
||||
union tag mismatch error reporting.
|
||||
|
||||
2000-09-01 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* call.c (build_scoped_method_call): Check it is not a namespace.
|
||||
* call.c (build_scoped_method_call): Check it is not a namespace.
|
||||
|
||||
2000-08-30 Jason Merrill <jason@redhat.com>
|
||||
|
||||
|
|
|
@ -14510,6 +14510,18 @@ finish_function (flags)
|
|||
note_debug_info_needed (ctype);
|
||||
#endif
|
||||
|
||||
/* If this function is marked with the constructor attribute,
|
||||
add it to the list of functions to be called along with
|
||||
constructors from static duration objects. */
|
||||
if (DECL_STATIC_CONSTRUCTOR (fndecl))
|
||||
static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
|
||||
|
||||
/* If this function is marked with the destructor attribute,
|
||||
add it to the list of functions to be called along with
|
||||
destructors from static duration objects. */
|
||||
if (DECL_STATIC_DESTRUCTOR (fndecl))
|
||||
static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
|
||||
|
||||
if (DECL_NAME (DECL_RESULT (fndecl)))
|
||||
returns_value |= can_reach_end;
|
||||
else
|
||||
|
@ -14565,11 +14577,6 @@ finish_function (flags)
|
|||
DECL_RTL (t) = DECL_INCOMING_RTL (t) = NULL_RTX;
|
||||
}
|
||||
|
||||
if (DECL_STATIC_CONSTRUCTOR (fndecl))
|
||||
static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
|
||||
if (DECL_STATIC_DESTRUCTOR (fndecl))
|
||||
static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
|
||||
|
||||
/* Clean up. */
|
||||
if (! nested)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue