public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/109433] New: [12/13 Regression] ICE with -std=c++11 and static constexpr array inside a template constexpr
@ 2023-04-06 10:07 pinskia at gcc dot gnu.org
  2023-04-06 10:09 ` [Bug c++/109433] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-04-06 10:07 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109433
           Summary: [12/13 Regression] ICE with -std=c++11 and static
                    constexpr array inside a template constexpr
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

Note this is not exactly a dup of bug 109431 as it works in GCC 11.3.0.
Note also it ICEs with -std=c++14 in GCC 11.3.0 (which looks to be the same as
PR109431 ) but works with -std=c++11.

testcase:
```
struct RangeLimits
{
    int low = 1;
};

template <int>
int parameterLimits(void)
{
    static RangeLimits constexpr param_limits[ 2 ] = {};
    auto const &limits = param_limits[ 1 ];
    return 0;
}

auto s = parameterLimits<1>();
```

Maybe they are the same issue but I am not 100% sure as they regressed at
different times and produce different ICEs.

The ICE on the trunk:

<source>:10:55: internal compiler error: unexpected expression 'const
RangeLimits()' of kind cast_expr
   10 |     static RangeLimits constexpr param_limits[ 2 ] = {};
      |                                                       ^

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

end of thread, other threads:[~2023-05-08 12:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-06 10:07 [Bug c++/109433] New: [12/13 Regression] ICE with -std=c++11 and static constexpr array inside a template constexpr pinskia at gcc dot gnu.org
2023-04-06 10:09 ` [Bug c++/109433] " pinskia at gcc dot gnu.org
2023-04-06 13:06 ` jakub at gcc dot gnu.org
2023-04-06 19:16 ` pinskia at gcc dot gnu.org
2023-05-08 12:26 ` [Bug c++/109433] [12/13/14 " rguenth 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).