From f42ab145aae3edb9a29a92662fc1a08207d30d94 Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Thu, 13 Nov 2008 11:55:01 +0100 Subject: [PATCH] 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 --- gcc/ChangeLog | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c53ee196c71..aae0e9cb47c 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