public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/105320] Use of shared_ptr within a type exported from a module results in spurious compiler error
Date: Tue, 30 Apr 2024 06:23:52 +0000	[thread overview]
Message-ID: <bug-105320-4-0weuAbtDEK@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-105320-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105320

--- Comment #4 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Nathaniel Shead <nshead@gcc.gnu.org>:

https://gcc.gnu.org/g:b5f6a56940e70838a07e885de03a92e2bd64674a

commit r15-59-gb5f6a56940e70838a07e885de03a92e2bd64674a
Author: Nathaniel Shead <nathanieloshead@gmail.com>
Date:   Mon Apr 29 17:00:13 2024 +1000

    c++: Fix instantiation of imported temploid friends [PR114275]

    This patch fixes a number of issues with the handling of temploid friend
    declarations.

    The primary issue is that instantiations of friend declarations should
    attach the declaration to the same module as the befriending class, by
    [module.unit] p7.1 and [temp.friend] p2; this could be a different
    module from the current TU, and so needs special handling.

    The other main issue here is that we can't assume that just because name
    lookup didn't find a definition for a hidden class template, that it
    doesn't exist at all: it could be a non-exported entity that we've
    nevertheless streamed in from an imported module.  We need to ensure
    that when instantiating template friend classes that we return the same
    TEMPLATE_DECL that we got from our imports, otherwise we will get later
    issues with 'duplicate_decls' (rightfully) complaining that they're
    different when trying to merge.

    This doesn't appear necessary for function templates due to the existing
    name lookup handling already finding these hidden declarations.

            PR c++/105320
            PR c++/114275

    gcc/cp/ChangeLog:

            * cp-tree.h (propagate_defining_module): Declare.
            (lookup_imported_hidden_friend): Declare.
            * decl.cc (duplicate_decls): Also check if hidden decls can be
            redeclared in this module.
            * module.cc (imported_temploid_friends): New.
            (init_modules): Initialize it.
            (trees_out::decl_value): Write it; don't consider imported
            temploid friends as attached to a module.
            (trees_in::decl_value): Read it.
            (get_originating_module_decl): Follow the owning decl for an
            imported temploid friend.
            (propagate_defining_module): New.
            * name-lookup.cc (get_mergeable_namespace_binding): New.
            (lookup_imported_hidden_friend): New.
            * pt.cc (tsubst_friend_function): Propagate defining module for
            new friend functions.
            (tsubst_friend_class): Lookup imported hidden friends.  Check
            for valid module attachment of existing names.  Propagate
            defining module for new classes.

    gcc/testsuite/ChangeLog:

            * g++.dg/modules/tpl-friend-10_a.C: New test.
            * g++.dg/modules/tpl-friend-10_b.C: New test.
            * g++.dg/modules/tpl-friend-10_c.C: New test.
            * g++.dg/modules/tpl-friend-10_d.C: New test.
            * g++.dg/modules/tpl-friend-11_a.C: New test.
            * g++.dg/modules/tpl-friend-11_b.C: New test.
            * g++.dg/modules/tpl-friend-12_a.C: New test.
            * g++.dg/modules/tpl-friend-12_b.C: New test.
            * g++.dg/modules/tpl-friend-12_c.C: New test.
            * g++.dg/modules/tpl-friend-12_d.C: New test.
            * g++.dg/modules/tpl-friend-12_e.C: New test.
            * g++.dg/modules/tpl-friend-12_f.C: New test.
            * g++.dg/modules/tpl-friend-13_a.C: New test.
            * g++.dg/modules/tpl-friend-13_b.C: New test.
            * g++.dg/modules/tpl-friend-13_c.C: New test.
            * g++.dg/modules/tpl-friend-13_d.C: New test.
            * g++.dg/modules/tpl-friend-13_e.C: New test.
            * g++.dg/modules/tpl-friend-13_f.C: New test.
            * g++.dg/modules/tpl-friend-13_g.C: New test.
            * g++.dg/modules/tpl-friend-14_a.C: New test.
            * g++.dg/modules/tpl-friend-14_b.C: New test.
            * g++.dg/modules/tpl-friend-14_c.C: New test.
            * g++.dg/modules/tpl-friend-14_d.C: New test.
            * g++.dg/modules/tpl-friend-9.C: New test.

    Signed-off-by: Nathaniel Shead <nathanieloshead@gmail.com>
    Reviewed-by: Jason Merrill <jason@redhat.com>

  parent reply	other threads:[~2024-04-30  6:23 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-20 18:28 [Bug c++/105320] New: " john at johnmaddock dot co.uk
2024-03-06 21:52 ` [Bug c++/105320] " ppalka at gcc dot gnu.org
2024-03-06 21:53 ` ppalka at gcc dot gnu.org
2024-03-06 22:04 ` ppalka at gcc dot gnu.org
2024-04-30  6:23 ` cvs-commit at gcc dot gnu.org [this message]
2024-04-30  7:32 ` nshead at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-105320-4-0weuAbtDEK@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).