aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-02-10 11:10:04 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2012-02-10 11:10:04 +0000
commit6d36105aaae27d356f305625f314a169d037cd1a (patch)
tree68cc744decde6761d4145354eda51fb6f63087cd /gcc/cgraphunit.c
parente1aed4a0d6b4ba2072f3500dcd85ba67e1f9e708 (diff)
2012-02-10 Richard Guenther <rguenther@suse.de>
PR translation/52193 * cgraphunit.c (cgraph_mark_functions_to_output): Fix typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184086 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index ddc026163ce..ae3090e2b13 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