]> gcc.gnu.org Git - gcc.git/commitdiff
c++: missing aggregate base ctor [PR102045]
authorJason Merrill <jason@redhat.com>
Sun, 27 Mar 2022 00:38:54 +0000 (20:38 -0400)
committerJason Merrill <jason@redhat.com>
Mon, 28 Mar 2022 13:35:58 +0000 (09:35 -0400)
When make_base_init_ok changes a call to a complete constructor into a call
to a base constructor, we were never marking the base ctor as used, so it
didn't get emitted.

PR c++/102045

gcc/cp/ChangeLog:

* call.cc (make_base_init_ok): Call make_used.

gcc/testsuite/ChangeLog:

* g++.dg/cpp1z/aggr-base12.C: New test.

gcc/cp/call.cc
gcc/testsuite/g++.dg/cpp1z/aggr-base12.C [new file with mode: 0644]

index dfe370d685dfd3b30e19244f223a1924967e5cfd..73fede5a3df4f37ca0b3fd76aea6c5f3858d6b2c 100644 (file)
@@ -8958,6 +8958,7 @@ make_base_init_ok (tree exp)
        call target.  It would be possible to splice in the appropriate
        arguments, but probably not worth the complexity.  */
     return false;
+  mark_used (fn);
   AGGR_INIT_EXPR_FN (exp) = build_address (fn);
   return true;
 }
diff --git a/gcc/testsuite/g++.dg/cpp1z/aggr-base12.C b/gcc/testsuite/g++.dg/cpp1z/aggr-base12.C
new file mode 100644 (file)
index 0000000..6f5a6b2
--- /dev/null
@@ -0,0 +1,24 @@
+// PR c++/102045
+// { dg-do link { target c++17 } }
+
+template<typename T>
+struct span
+{
+  template<unsigned long N>
+  constexpr span(T (&a)[N]) : data(a), len(N) { }
+  constexpr bool empty() const { return len == 0; }
+  T* data;
+  unsigned long len;
+};
+
+struct byte_writer: span<char> {
+  constexpr void do_something() noexcept {
+    (void)this->empty();
+  }
+};
+
+int main() {
+  char array[1];
+  auto writer = byte_writer{array};
+  writer.do_something();
+}
This page took 0.080449 seconds and 5 git commands to generate.