[Bug c++/101370] miscompile of constexpr array with initializers to self
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101370 Andrew Pinski changed: What|Removed |Added Resolution|--- |DUPLICATE Status|NEW
[Bug c++/101370] miscompile of constexpr array with initializers to self
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101370 --- Comment #3 from Andrew Pinski --- Here is a simple compile time testcase: struct Elem { Elem* next_ = this; }; constexpr Elem rs[1]; static_assert (rs[0].next_ == rs);
[Bug c++/101370] miscompile of constexpr array with initializers to self
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101370 Andrew Pinski changed: What|Removed |Added Summary|miscompile of |miscompile of constexpr