ipa-devirt.c (odr_types_equivalent_p): Do not ICE if one of types is anonymous.
authorJan Hubicka <jh@suse.cz>
Thu, 25 Oct 2018 12:18:28 +0000 (14:18 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Thu, 25 Oct 2018 12:18:28 +0000 (12:18 +0000)
* ipa-devirt.c (odr_types_equivalent_p): Do not ICE if one of types
is anonymous.
* g++.dg/lto/odr-1_0.C: New test.
* g++.dg/lto/odr-1_1.C: New test.

From-SVN: r265484

gcc/ChangeLog
gcc/ipa-devirt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lto/odr-1_0.C [new file with mode: 0644]
gcc/testsuite/g++.dg/lto/odr-1_1.C [new file with mode: 0644]

index ea92a42..2490eef 100644 (file)
@@ -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
index 9564d65..466b61e 100644 (file)
@@ -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));
 
index 23b2190..cdda132 100644 (file)
@@ -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 (file)
index 0000000..c59f169
--- /dev/null
@@ -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 (file)
index 0000000..5cd6f6c
--- /dev/null
@@ -0,0 +1,12 @@
+namespace {
+  struct b;
+ }
+struct a {
+  struct b *ptr;
+};
+void test(struct a *);
+int
+main(void)
+{
+  test (0);
+}