From: Richard Guenther Date: Fri, 10 Feb 2012 11:10:04 +0000 (+0000) Subject: re PR translation/52193 (Bad translatable string: failed to reclaim unneeded function... X-Git-Tag: releases/gcc-4.7.0~478 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7cbf224de2aeccf0a099c32b0d1f23fd356f5df8;p=thirdparty%2Fgcc.git re PR translation/52193 (Bad translatable string: failed to reclaim unneeded functionin same comdat group) 2012-02-10 Richard Guenther PR translation/52193 * cgraphunit.c (cgraph_mark_functions_to_output): Fix typo. From-SVN: r184086 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f3b735476f9e..27e4e6fa4d3b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-02-10 Richard Guenther + + PR translation/52193 + * cgraphunit.c (cgraph_mark_functions_to_output): Fix typo. + 2012-02-09 Peter Bergner PR middle-end/52140 diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index ddc026163ce0..ae3090e2b134 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -1430,14 +1430,16 @@ cgraph_mark_functions_to_output (void) tree decl = node->decl; if (!node->global.inlined_to && gimple_has_body_p (decl) - /* FIXME: in ltrans unit when offline copy is outside partition but inline copies - are inside partition, we can end up not removing the body since we no longer - have analyzed node pointing to it. */ + /* FIXME: in an ltrans unit when the offline copy is outside a + partition but inline copies are inside a partition, we can + end up not removing the body since we no longer have an + analyzed node pointing to it. */ && !node->in_other_partition && !DECL_EXTERNAL (decl)) { dump_cgraph_node (stderr, node); - internal_error ("failed to reclaim unneeded functionin same comdat group"); + internal_error ("failed to reclaim unneeded function in same " + "comdat group"); } } #endif