~ubuntu-branches/ubuntu/maverick/ghdl/maverick

« back to all changes in this revision

Viewing changes to gcc/gcc/cgraph.c

  • Committer: Bazaar Package Importer
  • Author(s): Wesley J. Landaker
  • Date: 2009-04-02 21:23:07 UTC
  • mfrom: (1.1.11 upstream) (3.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090402212307-01pkh97q9b3u1vea
Tags: 0.27+svn110+gcc4.3.3+dfsg-1
* Now using gcc-4.3.3
* Updated copyright information
* Added Vcs-Git information
* Updated to policy 3.8.1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
540
540
    }
541
541
  DECL_SAVED_TREE (node->decl) = NULL;
542
542
  DECL_STRUCT_FUNCTION (node->decl) = NULL;
543
 
  DECL_INITIAL (node->decl) = error_mark_node;
 
543
  /* If the node is abstract and needed, then do not clear DECL_INITIAL
 
544
     of its associated function function declaration because it's
 
545
     needed to emit debug info later.  */
 
546
  if (!node->abstract_and_needed)
 
547
    DECL_INITIAL (node->decl) = error_mark_node;
544
548
}
545
549
 
546
550
/* Remove the node from cgraph.  */