Blame SOURCES/gcc32-debug-cdtor.patch

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