Commit 1fd1d494 authored by mmitchel's avatar mmitchel
Browse files

PR debug/11098

	* integrate.c (copy_decl_for_inlining): Do not mark copied decls
	as DECL_ABSTRACT.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69374 138bc75d-0d04-0410-961f-82ee72b054a4
parent 162e05b3
2003-07-14 Mark Mitchell <mark@codesourcery.com>
PR debug/11098
* integrate.c (copy_decl_for_inlining): Do not mark copied decls
as DECL_ABSTRACT.
2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
 
* fixinc/inclhack.def (avoid_bool_define, avoid_bool_type): Bypass
......
......@@ -368,6 +368,8 @@ copy_decl_for_inlining (tree decl, tree from_fn, tree to_fn)
else
{
copy = copy_node (decl);
/* The COPY is not abstract; it will be generated in TO_FN. */
DECL_ABSTRACT (copy) = 0;
(*lang_hooks.dup_lang_specific_decl) (copy);
/* TREE_ADDRESSABLE isn't used to indicate that a label's
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment