PR ipa/93760
* ipa-devirt.c (odr_types_equivalent_p): Fix grammar.
PR ipa/93760
* g++.dg/lto/odr-8_1.C: Fix grammar.
+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
&& 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;
}
+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
-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()