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++/115239] [14 Regression] ICE: Segmentation fault with ambiguous function call in some cases (`const char*` vs `char` with `long` vs `unsigned`) since r14-6522
Date: Mon, 17 Jun 2024 14:26:27 +0000	[thread overview]
Message-ID: <bug-115239-4-lRFFYtRVDZ@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-115239-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #6 from GCC Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-14 branch has been updated by Patrick Palka
<ppalka@gcc.gnu.org>:

https://gcc.gnu.org/g:4df86402990e2f45e02a367f1734a22ebc041e98

commit r14-10319-g4df86402990e2f45e02a367f1734a22ebc041e98
Author: Patrick Palka <ppalka@redhat.com>
Date:   Thu Jun 13 10:02:43 2024 -0400

    c++: ICE w/ ambig and non-strictly-viable cands [PR115239]

    Here during overload resolution we have two strictly viable ambiguous
    candidates #1 and #2, and two non-strictly viable candidates #3 and #4
    which we hold on to ever since r14-6522.  These latter candidates have
    an empty second arg conversion since the first arg conversion was deemed
    bad, and this trips up joust when called on #3 and #4 which assumes all
    arg conversions are there.

    We can fix this by making joust robust to empty arg conversions, but in
    this situation we shouldn't need to compare #3 and #4 at all given that
    we have a strictly viable candidate.  To that end, this patch makes
    tourney shortcut considering non-strictly viable candidates upon
    encountering ambiguity between two strictly viable candidates (taking
    advantage of the fact that the candidates list is sorted according to
    viability via splice_viable).

            PR c++/115239

    gcc/cp/ChangeLog:

            * call.cc (tourney): Don't consider a non-strictly viable
            candidate as the champ if there was ambiguity between two
            strictly viable candidates.

    gcc/testsuite/ChangeLog:

            * g++.dg/overload/error7.C: New test.

    Reviewed-by: Jason Merrill <jason@redhat.com>
    (cherry picked from commit 7fed7e9bbc57d502e141e079a6be2706bdbd4560)

  parent reply	other threads:[~2024-06-17 14:26 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-27  4:37 [Bug c++/115239] New: ICE: internal compiler error: Segmentation fault markus at oberhumer dot com
2024-05-27  4:40 ` [Bug c++/115239] " pinskia at gcc dot gnu.org
2024-05-27  4:42 ` [Bug c++/115239] [14/15 Regression] ICE: Segmentation fault with ambiguous function call from static_assert in some cases pinskia at gcc dot gnu.org
2024-05-27  4:43 ` pinskia at gcc dot gnu.org
2024-05-27  4:45 ` [Bug c++/115239] [14/15 Regression] ICE: Segmentation fault with ambiguous function call " pinskia at gcc dot gnu.org
2024-05-27  7:22 ` [Bug c++/115239] [14/15 Regression] ICE: Segmentation fault with ambiguous function call in some cases (`const char*` vs `char` with `long` vs `unsigned`) rguenth at gcc dot gnu.org
2024-05-27  8:52 ` [Bug c++/115239] [14/15 Regression] ICE: Segmentation fault with ambiguous function call in some cases (`const char*` vs `char` with `long` vs `unsigned`) since r14-6522 jakub at gcc dot gnu.org
2024-06-13 14:02 ` cvs-commit at gcc dot gnu.org
2024-06-14 14:50 ` [Bug c++/115239] [14 " ppalka at gcc dot gnu.org
2024-06-17 14:26 ` cvs-commit at gcc dot gnu.org [this message]
2024-06-17 14:27 ` ppalka at gcc dot gnu.org
2024-06-24 21:51 ` pinskia 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-115239-4-lRFFYtRVDZ@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).