Re: [PATCH] Fix ifcombine ICE (PR tree-optimization/92115)

2019-10-17 Thread Richard Biener
On Thu, 17 Oct 2019, Jakub Jelinek wrote: > Hi! > > The following testcase ICEs, because ifcombine_ifandif attempts to set > GIMPLE_COND condition to a condition that might trap (which is allowed > only in COND_EXPR/VEC_COND_EXPR). > > Fixed thusly, bootstrapped/regtested on x86_64-linux and i68

[PATCH] Fix ifcombine ICE (PR tree-optimization/92115)

2019-10-16 Thread Jakub Jelinek
Hi! The following testcase ICEs, because ifcombine_ifandif attempts to set GIMPLE_COND condition to a condition that might trap (which is allowed only in COND_EXPR/VEC_COND_EXPR). Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk? 2019-10-17 Jakub Jelinek