[Bug c++/81042] Too many constexpr interations on unreachable loop.

2017-10-03 Thread v at vsamko dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81042 Valentine changed: What|Removed |Added CC||v at vsamko dot com --- Comment #3 from

[Bug c++/81042] Too many constexpr interations on unreachable loop.

2017-08-19 Thread maxmati4 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81042 Mateusz Nowotynski changed: What|Removed |Added CC||maxmati4 at gmail dot com ---

[Bug c++/81042] Too many constexpr interations on unreachable loop.

2017-06-09 Thread kevincox at kevincox dot ca
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81042 --- Comment #1 from Kevin Cox --- Also it appears the loop condition isn't properly evaluated. For example the following three examples (and any other number I tested also cause the error. while (++i == 0) {} // Unreachable while (++i == 1) {}