Commit cc8b9c31 by Jakub Jelinek Committed by Jakub Jelinek

re PR translation/52264 (translatable string typo: "refernece")

	PR translation/52264
	* cgraphunit.c (verify_cgraph_node): Fix a typo.

From-SVN: r184298
parent 0ec08108
2012-02-16 Jakub Jelinek <jakub@redhat.com>
PR translation/52264
* cgraphunit.c (verify_cgraph_node): Fix a typo.
2012-02-15 Sandra Loosemore <sandra@codesourcery.com> 2012-02-15 Sandra Loosemore <sandra@codesourcery.com>
* doc/invoke.texi: Clean up "n-bit/byte/word" modifiers. * doc/invoke.texi: Clean up "n-bit/byte/word" modifiers.
......
...@@ -667,7 +667,7 @@ verify_cgraph_node (struct cgraph_node *node) ...@@ -667,7 +667,7 @@ verify_cgraph_node (struct cgraph_node *node)
for (i = 0; ipa_ref_list_reference_iterate (&node->ref_list, i, ref); i++) for (i = 0; ipa_ref_list_reference_iterate (&node->ref_list, i, ref); i++)
if (ref->use != IPA_REF_ALIAS) if (ref->use != IPA_REF_ALIAS)
{ {
error ("Alias has non-alias refernece"); error ("Alias has non-alias reference");
error_found = true; error_found = true;
} }
else if (ref_found) else if (ref_found)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment