Blame SOURCES/gcc32-debug-cdtor.patch

727081
2003-07-14  Mark Mitchell  <mark@codesourcery.com>
727081
727081
	PR debug/11098
727081
	* integrate.c (copy_decl_for_inlining): Do not mark copied decls
727081
	as DECL_ABSTRACT.
727081
727081
--- gcc/integrate.c.jj	2003-02-14 09:26:34.000000000 +0100
727081
+++ gcc/integrate.c	2005-01-28 21:28:44.332792466 +0100
727081
@@ -368,6 +368,8 @@ copy_decl_for_inlining (decl, from_fn, t
727081
   else
727081
     {
727081
       copy = copy_node (decl);
727081
+      /* The COPY is not abstract; it will be generated in TO_FN.  */
727081
+      DECL_ABSTRACT (copy) = 0;
727081
       if (DECL_LANG_SPECIFIC (copy))
727081
 	copy_lang_decl (copy);
727081