public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/105622] New: ICE in cxx_eval_store_expression with [[no_unique_address]] and empty data members
@ 2022-05-16 19:06 ppalka at gcc dot gnu.org
  2022-05-16 19:08 ` [Bug c++/105622] [13 Regression] ICE in cxx_eval_store_expression with [[no_unique_address]] and empty data members since r13-160-g967cdbe6629653 ppalka at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ppalka at gcc dot gnu.org @ 2022-05-16 19:06 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 105622
           Summary: ICE in cxx_eval_store_expression with
                    [[no_unique_address]] and empty data members
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ppalka at gcc dot gnu.org
  Target Milestone: ---

struct empty {
  empty() = default;
  constexpr empty(int) { }
};

struct container {
  empty __begin_ = {};
  [[no_unique_address]] empty __size_ = 0;
};

constexpr bool test() {
  container s;
  return true;
}
static_assert(test());


testcase.ii: In function ‘constexpr bool test()’:
testcase.ii:12:13:   in ‘constexpr’ expansion of ‘s.container::container()’
testcase.ii:12:13: internal compiler error: in cxx_eval_store_expression, at
cp/constexpr.cc:5927
   12 |   container s;
      |             ^
0x6a0ca0 cxx_eval_store_expression
        /home/patrick/gcc/gcc/cp/constexpr.cc:5927
0x96c254 cxx_eval_constant_expression
        /home/patrick/gcc/gcc/cp/constexpr.cc:6847
0x96c4d6 cxx_eval_constant_expression
        /home/patrick/gcc/gcc/cp/constexpr.cc:7236
0x96c717 cxx_eval_constant_expression
        /home/patrick/gcc/gcc/cp/constexpr.cc:7048

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-05-24 20:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-16 19:06 [Bug c++/105622] New: ICE in cxx_eval_store_expression with [[no_unique_address]] and empty data members ppalka at gcc dot gnu.org
2022-05-16 19:08 ` [Bug c++/105622] [13 Regression] ICE in cxx_eval_store_expression with [[no_unique_address]] and empty data members since r13-160-g967cdbe6629653 ppalka at gcc dot gnu.org
2022-05-17  6:58 ` [Bug c++/105622] [13 Regression] ICE in cxx_eval_store_expression with [[no_unique_address]] " rguenth at gcc dot gnu.org
2022-05-17 22:16 ` jason at gcc dot gnu.org
2022-05-24 19:50 ` cvs-commit at gcc dot gnu.org
2022-05-24 20:07 ` jason at gcc dot gnu.org

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).