aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@gcc.gnu.org>2008-11-13 11:55:01 +0100
committerDodji Seketeli <dodji@gcc.gnu.org>2008-11-13 11:55:01 +0100
commitf42ab145aae3edb9a29a92662fc1a08207d30d94 (patch)
tree1512ddd4c9f35600f953489518c83a2d46107545
parent3b5391959d64956517ddd1a70d5d0fd6c2a12fa6 (diff)
downloadgcc-f42ab145aae3edb9a29a92662fc1a08207d30d94.zip
gcc-f42ab145aae3edb9a29a92662fc1a08207d30d94.tar.gz
gcc-f42ab145aae3edb9a29a92662fc1a08207d30d94.tar.bz2
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
-rw-r--r--gcc/ChangeLog6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c53ee19..aae0e9c 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 <sje@cup.hp.com>