public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-9705] c++: missing aggregate base ctor [PR102045]
@ 2022-03-28 19:13 Jason Merrill
  0 siblings, 0 replies; only message in thread
From: Jason Merrill @ 2022-03-28 19:13 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:14146bb58f279659279cd189bf95c3b0cb5fe1ac

commit r11-9705-g14146bb58f279659279cd189bf95c3b0cb5fe1ac
Author: Jason Merrill <jason@redhat.com>
Date:   Sat Mar 26 20:38:54 2022 -0400

    c++: missing aggregate base ctor [PR102045]
    
    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.c (make_base_init_ok): Call make_used.
    
    gcc/testsuite/ChangeLog:
    
            * g++.dg/cpp1z/aggr-base12.C: New test.

Diff:
---
 gcc/cp/call.c                            |  1 +
 gcc/testsuite/g++.dg/cpp1z/aggr-base12.C | 24 ++++++++++++++++++++++++
 2 files changed, 25 insertions(+)

diff --git a/gcc/cp/call.c b/gcc/cp/call.c
index 5e5bc97f63b..f8b964a96da 100644
--- a/gcc/cp/call.c
+++ b/gcc/cp/call.c
@@ -8643,6 +8643,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
index 00000000000..6f5a6b2056a
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp1z/aggr-base12.C
@@ -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();
+}


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-03-28 19:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-28 19:13 [gcc r11-9705] c++: missing aggregate base ctor [PR102045] Jason Merrill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).