Fix grammar in error message.
authorMartin Liska <mliska@suse.cz>
Mon, 17 Feb 2020 12:21:34 +0000 (13:21 +0100)
committerMartin Liska <mliska@suse.cz>
Mon, 17 Feb 2020 12:21:34 +0000 (13:21 +0100)
PR ipa/93760
* ipa-devirt.c (odr_types_equivalent_p): Fix grammar.
PR ipa/93760
* g++.dg/lto/odr-8_1.C: Fix grammar.

gcc/ChangeLog
gcc/ipa-devirt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lto/odr-8_1.C

index 8af3c2a..ef96849 100644 (file)
@@ -1,5 +1,10 @@
 2020-02-17  Martin Liska  <mliska@suse.cz>
 
+       PR ipa/93760
+       * ipa-devirt.c (odr_types_equivalent_p): Fix grammar.
+
+2020-02-17  Martin Liska  <mliska@suse.cz>
+
        PR translation/93755
        * config/rs6000/rs6000.c (rs6000_option_override_internal):
        Fix double quotes.
index b04cae7..bd9f344 100644 (file)
@@ -1548,7 +1548,7 @@ odr_types_equivalent_p (tree t1, tree t2, bool warn, bool *warned,
       && COMPLETE_TYPE_P (t1) && COMPLETE_TYPE_P (t2))
     {
       warn_odr (t1, t2, NULL, NULL, warn, warned,
-               G_("one type needs to be constructed while other not"));
+               G_("one type needs to be constructed while the other does not"));
       gcc_checking_assert (RECORD_OR_UNION_TYPE_P (t1));
       return false;
     }
index b326529..0de8adf 100644 (file)
@@ -1,3 +1,8 @@
+2020-02-17  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/93760
+       * g++.dg/lto/odr-8_1.C: Fix grammar.
+
 2020-02-17  Richard Biener  <rguenther@suse.de>
 
        PR c/86134
index cbcd15d..501dbbd 100644 (file)
@@ -1,4 +1,4 @@
-struct a {char c; a() {} a(struct a &) {}}; // { dg-lto-message "one type needs to be constructed while other not" }
+struct a {char c; a() {} a(struct a &) {}}; // { dg-lto-message "one type needs to be constructed while the other does not" }
 extern int test (struct a *a);
 int
 main()