[Bug c++/80093] missed optimization opportunity with std::uniform_int_distribution

2018-08-24 Thread trashyankes at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80093 trashyankes at wp dot pl changed: What|Removed |Added Status|NEW |RESOLVED

[Bug c++/80093] missed optimization opportunity with std::uniform_int_distribution

2017-03-23 Thread trashyankes at wp dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80093 --- Comment #2 from trashyankes at wp dot pl --- ``` #include int foo (std::mt19937* x) { std::uniform_int_distribution k(0, 99); for (auto i = 0; i < 1'000'000'000; ++i) { std::uniform_int_distribution y(0, 99); volatile auto r =

[Bug c++/80093] missed optimization opportunity with std::uniform_int_distribution

2017-03-20 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80093 Richard Biener changed: What|Removed |Added Keywords||missed-optimization