public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "hewillk at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/99831] New: ICE: in reshape_init, at cp/decl.c:6720
Date: Tue, 30 Mar 2021 14:27:42 +0000	[thread overview]
Message-ID: <bug-99831-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 99831
           Summary: ICE: in reshape_init, at cp/decl.c:6720
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hewillk at gmail dot com
  Target Milestone: ---

This is a complicated one since I don't know how to reduce it.

https://godbolt.org/z/rqTGxMWef

#include <algorithm>

template <int N>
struct StringLiteral {
  constexpr StringLiteral(const char (&str)[N]) {
    std::ranges::copy_n(str, N, value);
  }
  char value[N];
};

template <StringLiteral>
struct string{
  constexpr bool operator==(const string&) const noexcept = default;
};

template <StringLiteral L1, StringLiteral L2>
constexpr auto operator+(string<L1>, string<L2>) {
  constexpr auto L3 = []{
    constexpr auto size1 = sizeof(L1.value);
    constexpr auto size2 = sizeof(L2.value);
    char value[size1 + size2 - 1] = {};
    std::ranges::sort(value);
    std::ranges::copy_n(L1.value, size1, value);
    std::ranges::copy_n(L2.value, size2, value + size1 - 1);
    return StringLiteral{value};
  }();
  return string<L3>{};
}

static_assert(
  string<"hello, world">{} ==
  string<"hello">{} + string<", world">{}
);

static_assert(
  string<"a rose is a rose is a rose">{} ==
  string<"a rose">{} + string<" is ">{} + 
  string<"a rose">{} + string<" is ">{} + 
  string<"a rose">{}
);

<source>:36:40: internal compiler error: in reshape_init, at cp/decl.c:6720
   36 |   string<"a rose is a rose is a rose">{} ==
      |                                        ^
0x1cfb6a9 internal_error(char const*, ...)
        ???:0
0x6ba871 fancy_abort(char const*, int, char const*)
        ???:0
0x7810b6 reshape_init(tree_node*, tree_node*, int)
        ???:0
0x97e050 finish_compound_literal(tree_node*, tree_node*, int, fcl_t)
        ???:0
0x8e12ad c_parse_file()
        ???:0
0xa600a2 c_common_parse_file()
        ???:0
Please submit a full bug report,
with preprocessed source if appropriate.

             reply	other threads:[~2021-03-30 14:27 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-30 14:27 hewillk at gmail dot com [this message]
2021-03-30 14:34 ` [Bug c++/99831] " hewillk at gmail dot com
2021-03-30 14:41 ` mpolacek at gcc dot gnu.org
2021-03-30 15:04 ` mpolacek at gcc dot gnu.org
2021-03-30 17:43 ` hewillk at gmail dot com
2021-03-30 19:14 ` mpolacek at gcc dot gnu.org
2021-03-30 19:34 ` mpolacek at gcc dot gnu.org
2021-03-30 19:46 ` mpolacek at gcc dot gnu.org
2021-03-30 19:51 ` mpolacek at gcc dot gnu.org
2021-03-31  1:04 ` mpolacek at gcc dot gnu.org
2021-03-31  7:54 ` [Bug c++/99831] [10/11 Regression] " rguenth at gcc dot gnu.org
2021-04-01 18:18 ` mpolacek at gcc dot gnu.org
2021-04-01 21:35 ` cvs-commit at gcc dot gnu.org
2021-04-01 21:37 ` [Bug c++/99831] [10 " mpolacek at gcc dot gnu.org
2021-04-08 12:02 ` rguenth at gcc dot gnu.org
2021-04-09 22:45 ` cvs-commit at gcc dot gnu.org
2021-04-09 22:46 ` mpolacek 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-99831-4@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).