aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/ipa-devirt.c7
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/g++.dg/lto/odr-1_0.C8
-rw-r--r--gcc/testsuite/g++.dg/lto/odr-1_1.C12
5 files changed, 38 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ea92a42..2490eef 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2018-10-25 Jan Hubicka <jh@suse.cz>
+
+ * ipa-devirt.c (odr_types_equivalent_p): Do not ICE if one of types
+ is anonymous.
+
2018-10-25 Richard Biener <rguenther@suse.de>
PR tree-optimization/87665
diff --git a/gcc/ipa-devirt.c b/gcc/ipa-devirt.c
index 9564d65..466b61e 100644
--- a/gcc/ipa-devirt.c
+++ b/gcc/ipa-devirt.c
@@ -1265,6 +1265,13 @@ odr_types_equivalent_p (tree t1, tree t2, bool warn, bool *warned,
/* Check first for the obvious case of pointer identity. */
if (t1 == t2)
return true;
+ if ((type_with_linkage_p (t1) && type_in_anonymous_namespace_p (t1))
+ != (type_with_linkage_p (t2) && type_in_anonymous_namespace_p (t2)))
+ {
+ warn_odr (t1, t2, NULL, NULL, warn, warned,
+ G_("one of types is in anonymous namespace while other is not"));
+ return false;
+ }
gcc_assert (!type_with_linkage_p (t1) || !type_in_anonymous_namespace_p (t1));
gcc_assert (!type_with_linkage_p (t2) || !type_in_anonymous_namespace_p (t2));
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 23b2190..cdda132 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,5 +1,11 @@
+2018-10-25 Jan Hubicka <jh@suse.cz>
+
+ * g++.dg/lto/odr-1_0.C: New test.
+ * g++.dg/lto/odr-1_1.C: New test.
+
2018-10-25 Thomas Preud'homme <thomas.preudhomme@linaro.org>
+
* gcc.dg/sibcall-9.c: Make v static.
* gcc.dg/sibcall-10.c: Likewise.
diff --git a/gcc/testsuite/g++.dg/lto/odr-1_0.C b/gcc/testsuite/g++.dg/lto/odr-1_0.C
new file mode 100644
index 0000000..c59f169
--- /dev/null
+++ b/gcc/testsuite/g++.dg/lto/odr-1_0.C
@@ -0,0 +1,8 @@
+// PR c++/82414
+// { dg-lto-do link }
+struct a { // { dg-lto-warning "8: type 'struct a' violates the C\\+\\+ One Definition Rule" }
+ struct b *ptr; // { dg-lto-message "13: the first difference of corresponding definitions is field 'ptr'" }
+};
+void test(struct a *) // { dg-lto-warning "6: warning: 'test' violates the C++ One Definition Rule" }
+{
+}
diff --git a/gcc/testsuite/g++.dg/lto/odr-1_1.C b/gcc/testsuite/g++.dg/lto/odr-1_1.C
new file mode 100644
index 0000000..5cd6f6c
--- /dev/null
+++ b/gcc/testsuite/g++.dg/lto/odr-1_1.C
@@ -0,0 +1,12 @@
+namespace {
+ struct b;
+ }
+struct a {
+ struct b *ptr;
+};
+void test(struct a *);
+int
+main(void)
+{
+ test (0);
+}