From: Richard Biener Date: Tue, 24 Jan 2017 12:41:07 +0000 (+0000) Subject: re PR translation/79208 (Typo in gcc/ipa-devirt.c:1631) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1e41b6f10c76dbdc8bfd2d4a345dffefd45968f;p=gcc.git re PR translation/79208 (Typo in gcc/ipa-devirt.c:1631) 2017-01-24 Richard Biener PR translation/79208 * ipa-devirt.c (odr_types_equivalent_p): Fix typo in diagnostic. From-SVN: r244866 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23cbb99adf2..016f7039141 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-01-24 Richard Biener + + PR translation/79208 + * ipa-devirt.c (odr_types_equivalent_p): Fix typo in diagnostic. + 2017-01-24 Martin Jambor PR bootstrap/79198 diff --git a/gcc/ipa-devirt.c b/gcc/ipa-devirt.c index 38d5408126d..4428d679722 100644 --- a/gcc/ipa-devirt.c +++ b/gcc/ipa-devirt.c @@ -1628,7 +1628,7 @@ odr_types_equivalent_p (tree t1, tree t2, bool warn, bool *warned, if (DECL_VIRTUAL_P (f1) != DECL_VIRTUAL_P (f2)) { warn_odr (t1, t2, f1, f2, warn, warned, - G_("s definition that differs by virtual " + G_("a definition that differs by virtual " "keyword in another translation unit")); return false; }