[Bug c++/83170] ice in verify_use with -O3

2017-11-27 Thread skpgkp1 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83170 Sunil Pandey changed: What|Removed |Added CC||skpgkp1 at gmail dot com --- Comment #3 f

[Bug c++/83170] ice in verify_use with -O3

2017-11-27 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83170 Richard Biener changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/83170] ice in verify_use with -O3

2017-11-26 Thread dcb314 at hotmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83170 --- Comment #1 from David Binderman --- Reduced C++ code seems to be: int a; enum bk { bm }; enum bn { bo }; enum { bp, bq, br, bs }; class d { public: d(); char b; void bv(char, bn); char bw[]; }; d::d() { bv(b, bo); } short c; void d: