From: Dodji Seketeli Date: Thu, 13 Nov 2008 10:55:01 +0000 (+0100) Subject: Fix ChangeLog entry: X-Git-Tag: releases/gcc-4.4.0~1691 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f42ab145aae3edb9a29a92662fc1a08207d30d94;p=thirdparty%2Fgcc.git Fix ChangeLog entry: PR debug/27574 * cgraph.h: New abstract_and_needed member to struct cgraph_node. * cgraphunit.c (cgraph_analyze_functions): Flag abstract functions - which clones are reachable - as "abstract and needed". * cgraph.c (cgraph_release_function_body): If a node is "abstract and needed", do not release its DECL_INITIAL() content that will be needed to emit debug info. From-SVN: r141819 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c53ee196c71d..aae0e9cb47ce 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -18,9 +18,9 @@ * cgraph.h: New abstract_and_needed member to struct cgraph_node. * cgraphunit.c (cgraph_analyze_functions): Flag abstract functions - which clones are reachable - as "abstract and needed". - * cgraph.c (cgraph_release_function_body): If a node is "abstract and needed", - do not release its DECL_INITIAL() content because that will be needed to emit - debug info. + * cgraph.c (cgraph_release_function_body): If a node is + "abstract and needed", do not release its DECL_INITIAL() content + that will be needed to emit debug info. 2008-11-12 Steve Ellcey