Blame SOURCES/gcc32-debug-cdtor.patch

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