[Bug tree-optimization/92891] [10 Regression] ice in decompose, at wide-int.h:984

jakub at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Tue Dec 10 19:23:00 GMT 2019


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92891

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2019-12-10
                 CC|                            |jakub at gcc dot gnu.org,
                   |                            |msebor at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Most likely r278983.  The ICE is on
3889                          else if (wi::ltu_p (min, wisiz))
where min->precision is 64 and wisiz->precision is 32.  That is invalid, ltu_p
etc. can be called only with the same precision wide_ints.


More information about the Gcc-bugs mailing list