re PR c++/86763 (Wrong code comparing member of copy of a 237 byte object with nontri...
authorRichard Biener <rguenther@suse.de>
Thu, 2 Aug 2018 14:25:57 +0000 (14:25 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 2 Aug 2018 14:25:57 +0000 (14:25 +0000)
2018-08-02  Richard Biener  <rguenther@suse.de>

PR c++/86763
* class.c (layout_class_type): Copy TYPE_TYPELESS_STORAGE
to the CLASSTYPE_AS_BASE.

* g++.dg/torture/pr86763.C: New testcase.

From-SVN: r263261

gcc/ChangeLog
gcc/cp/class.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/torture/pr86763.C [new file with mode: 0644]

index 85c1ef57991525852f6bd74830c4fd06ca8a02cd..a406f8e13038de6f697a9f4abd5947371e2c38b9 100644 (file)
@@ -1,3 +1,9 @@
+2018-08-02  Richard Biener  <rguenther@suse.de>
+
+       PR c++/86763
+       * class.c (layout_class_type): Copy TYPE_TYPELESS_STORAGE
+       to the CLASSTYPE_AS_BASE.
+
 2018-08-02  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/86816
index de59831c54e56887942dd48ebeb970024637b0d6..76a9e186c269891423c8422568691478b4ed5aaf 100644 (file)
@@ -6279,6 +6279,7 @@ layout_class_type (tree t, tree *virtuals_p)
                                  bitsize_int (BITS_PER_UNIT)));
       SET_TYPE_ALIGN (base_t, rli->record_align);
       TYPE_USER_ALIGN (base_t) = TYPE_USER_ALIGN (t);
+      TYPE_TYPELESS_STORAGE (base_t) = TYPE_TYPELESS_STORAGE (t);
 
       /* Copy the non-static data members of T. This will include its
         direct non-virtual bases & vtable.  */
index b0e7505500d0527d1ae73c0c87e6f4f628981243..976bfa8d07de187cfbc8b50370ad4e8723797869 100644 (file)
@@ -1,3 +1,8 @@
+2018-08-02  Richard Biener  <rguenther@suse.de>
+
+       PR c++/86763
+       * g++.dg/torture/pr86763.C: New testcase.
+
 2018-08-02  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/86816
diff --git a/gcc/testsuite/g++.dg/torture/pr86763.C b/gcc/testsuite/g++.dg/torture/pr86763.C
new file mode 100644 (file)
index 0000000..6b79d56
--- /dev/null
@@ -0,0 +1,36 @@
+// { dg-do run }
+// { dg-additional-options "-fschedule-insns2 -fstrict-aliasing" }
+
+#include <cstdint>
+#include <cassert>
+#include <time.h>
+struct ID {
+  uint64_t value;
+};
+uint64_t value(ID id) { return id.value; }
+uint64_t gen { 1000 };
+struct Msg {
+  uint64_t time;
+  ID id;
+};
+struct V {
+  V() { }
+  V(Msg const & msg) : msg(msg) { }
+  Msg & get() { return msg; }
+  Msg msg;
+  char pad[237 - sizeof(Msg)];
+};
+struct T : V { using V::V; };
+Msg init_msg() {
+  Msg msg;
+  timespec t;
+  clock_gettime(CLOCK_REALTIME, &t);
+  msg.time = t.tv_sec + t.tv_nsec;
+  msg.id.value = ++gen;
+  return msg;
+}
+int main() {
+  T t;
+  t = init_msg();
+  assert(value(t.get().id) == 1001);
+}