Re: [PATCH] tree-ssa-dce: Fix up maybe_optimize_arith_overflow for BITINT_TYPE [PR112880]

2023-12-07 Thread Richard Biener
On Thu, 7 Dec 2023, Jakub Jelinek wrote: > Hi! > > The following testcase ICEs because maybe_optimize_arith_overflow > uses build_nonstandard_integer_type, which is inappropriate if > type is large BITINT_TYPE. > > Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux, > ok for

[PATCH] tree-ssa-dce: Fix up maybe_optimize_arith_overflow for BITINT_TYPE [PR112880]

2023-12-06 Thread Jakub Jelinek
Hi! The following testcase ICEs because maybe_optimize_arith_overflow uses build_nonstandard_integer_type, which is inappropriate if type is large BITINT_TYPE. Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk? 2023-12-07 Jakub Jelinek PR