[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-28 Thread ubizjak at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 Uroš Bizjak changed: What|Removed |Added CC|uros at gcc dot gnu.org| Assignee|unassigned at

[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-28 Thread uros at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 --- Comment #12 from uros at gcc dot gnu.org --- Author: uros Date: Mon Oct 28 14:16:50 2019 New Revision: 277520 URL: https://gcc.gnu.org/viewcvs?rev=277520=gcc=rev Log: PR target/92225 * config/i386/sse.md

[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-28 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 Richard Biener changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-28 Thread uros at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 --- Comment #10 from uros at gcc dot gnu.org --- Author: uros Date: Mon Oct 28 11:29:43 2019 New Revision: 277510 URL: https://gcc.gnu.org/viewcvs?rev=277510=gcc=rev Log: PR target/92225 * config/i386/sse.md

[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-28 Thread ubizjak at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 --- Comment #9 from Uroš Bizjak --- (In reply to rguent...@suse.de from comment #8) > Will you do the fix? I have it in testing.

[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-28 Thread rguenther at suse dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 --- Comment #8 from rguenther at suse dot de --- On Fri, 25 Oct 2019, ubizjak at gmail dot com wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 > > --- Comment #7 from Uroš Bizjak --- > (In reply to Uroš Bizjak from comment #6) > >

[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-25 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 Richard Biener changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug target/92225] ice in gen_smaxv2di3, at config/i386/sse.md:12225

2019-10-25 Thread dcb314 at hotmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92225 --- Comment #2 from David Binderman --- Reduced code: void a(long); unsigned *b; void c() { long d; for (int e; e; e++) if (b[e] > d) d = b[e]; a(d); }