From 0dcc26c3112f1c8e024c17b245d0519642fb65da Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 2 Aug 2013 11:44:18 +0200 Subject: [PATCH] ipa.c (symtab_remove_unreachable_nodes): Nodes in other partitions are not needed. * ipa.c (symtab_remove_unreachable_nodes): Nodes in other partitions are not needed. From-SVN: r201431 --- gcc/ChangeLog | 5 +++++ gcc/ipa.c | 1 + 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5dfbc6f..7ec0d31 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-08-01 Jan Hubicka + + * ipa.c (symtab_remove_unreachable_nodes): Nodes in other partitions are + not needed. + 2013-08-01 Uros Bizjak * config/i386/i386.h (MAYBE_NON_Q_CLASS_P): New. diff --git a/gcc/ipa.c b/gcc/ipa.c index 243bf20..085454d 100644 --- a/gcc/ipa.c +++ b/gcc/ipa.c @@ -239,6 +239,7 @@ symtab_remove_unreachable_nodes (bool before_inlining_p, FILE *file) node->used_as_abstract_origin = false; if (node->symbol.definition && !node->global.inlined_to + && !node->symbol.in_other_partition && (!cgraph_can_remove_if_no_direct_calls_and_refs_p (node) /* Keep around virtual functions for possible devirtualization. */ || (before_inlining_p -- 2.7.4