public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jason Merrill <jason@redhat.com>
To: Iain Sandoe <idsandoe@googlemail.com>
Cc: Nathaniel Shead <nathanieloshead@gmail.com>,
	Patrick Palka <ppalka@redhat.com>,
	GCC Patches <gcc-patches@gcc.gnu.org>,
	Nathan Sidwell <nathan@acm.org>
Subject: Re: [PATCH][14 backport] c++: Fix instantiation of imported temploid friends [PR114275]
Date: Fri, 24 May 2024 11:13:15 -0400	[thread overview]
Message-ID: <3570dfac-6f35-4b89-919d-c4eb25459c74@redhat.com> (raw)
In-Reply-To: <8FA6E0CB-F7E1-45D0-B062-851A176CCBA8@googlemail.com>

On 5/24/24 10:40, Iain Sandoe wrote:
> 
> 
>> On 24 May 2024, at 14:54, Jason Merrill <jason@redhat.com> wrote:
>>
>> On 5/24/24 04:06, Nathaniel Shead wrote:
>>> On Thu, May 23, 2024 at 06:41:06PM -0400, Jason Merrill wrote:
>>>> On 5/13/24 07:56, Nathaniel Shead wrote:
>>>>>>> @@ -11751,9 +11767,16 @@ tsubst_friend_class (tree friend_tmpl, tree args)
>>>>>>>           if (tmpl != error_mark_node)
>>>>>>>     	{
>>>>>>>     	  /* The new TMPL is not an instantiation of anything, so we
>>>>>>> -	     forget its origins.  We don't reset CLASSTYPE_TI_TEMPLATE
>>>>>>> +	     forget its origins.  It is also not a specialization of
>>>>>>> +	     anything.  We don't reset CLASSTYPE_TI_TEMPLATE
>>>>>>>     	     for the new type because that is supposed to be the
>>>>>>>     	     corresponding template decl, i.e., TMPL.  */
>>>>>>> +	  spec_entry elt;
>>>>>>> +	  elt.tmpl = friend_tmpl;
>>>>>>> +	  elt.args = CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl));
>>>>>>> +	  elt.spec = TREE_TYPE (tmpl);
>>>>>>> +	  type_specializations->remove_elt (&elt);
>>>>>>
>>>>>> For GCC 14.2 let's guard this with if (modules_p ()); for GCC 15 it can be
>>>>>> unconditional.  OK.
>>>>>
>>>>> I'm looking to backport this patch to GCC 14 now that it's been on trunk
>>>>> some time.  Here's the patch I'm aiming to add (squashed with the
>>>>> changes from r15-220-gec2365e07537e8) after cherrypicking the
>>>>> prerequisite commit r15-58-g2faf040335f9b4; is this OK?
>>>>>
>>>>> Or should I keep it as two separate commits to make the cherrypicking
>>>>> more obvious? Not entirely sure on the etiquette around this.
>>>>
>>>> It's OK to squash them, but it's typical to use -x (directly or via git
>>>> gcc-backport) to mention where a branch change was cherry-picked from, and
>>>> in this case it would make sense to edit in the second commit so it's clear
>>>> the backport includes both.  OK that way.
>>> Sorry, still a bit confused :)  Do you mean to merge the two commits
>>> together such that there are two "cherry picked from commit ..."s in the
>>> commit message?  Or just list second commit, and mention that it
>>> includes both in the commit message?
>>
>> I was thinking
>>
>> (cherry picked from commit aaaaa and bbbbb)
> 
> For the record, I do not think the git hooks with allow that exactly (or, at least, if they
> do I did not find the right syntax);  what I’ve done in similar cases is to keep the main
> “cherry picked from” line for the main patch and then add text to the intro section
> saying that xxxxxxxx and yyyyyyyy are also included.

Looks like the git_commit.py regex "cherry picked from commit 
(?P<hash>\w+)" will ignore everything after the first commit-id, so it 
should be fine.  You just can't pluralize "commit" to "commits".  :)

Jason


      reply	other threads:[~2024-05-24 15:13 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-25  9:17 [PATCH] c++/modules: " Nathaniel Shead
2024-04-15  4:49 ` [PATCH v2 1/2] c++: Standardise errors for module_may_redeclare Nathaniel Shead
2024-04-17 15:13   ` Patrick Palka
2024-04-19 16:18   ` Nathaniel Shead
2024-04-25 19:52     ` Jason Merrill
2024-04-15  4:53 ` [PATCH v2 2/2] c++/modules: Fix instantiation of imported temploid friends [PR114275] Nathaniel Shead
2024-04-17 18:02   ` Patrick Palka
2024-04-19  2:14     ` Nathaniel Shead
2024-04-19 16:29       ` [PATCH v3 2/2] c++: " Nathaniel Shead
2024-04-27  1:16         ` Jason Merrill
2024-04-29  9:34           ` [PATCH v4 " Nathaniel Shead
2024-04-29 22:37             ` Jason Merrill
2024-05-13 11:56               ` [PATCH][14 backport] " Nathaniel Shead
2024-05-23 22:29                 ` Patrick Palka
2024-05-23 22:41                 ` Jason Merrill
2024-05-24  8:06                   ` Nathaniel Shead
2024-05-24 13:54                     ` Jason Merrill
2024-05-24 14:21                       ` Nathaniel Shead
2024-05-24 14:40                       ` Iain Sandoe
2024-05-24 15:13                         ` Jason Merrill [this message]

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=3570dfac-6f35-4b89-919d-c4eb25459c74@redhat.com \
    --to=jason@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=idsandoe@googlemail.com \
    --cc=nathan@acm.org \
    --cc=nathanieloshead@gmail.com \
    --cc=ppalka@redhat.com \
    /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).