Re: [PATCH v2] Vect: Fix ICE when vect_verify_loop_lens acts on relevant mode [PR116351]

2025-02-19 Thread Richard Biener
> Am 19.02.2025 um 02:55 schrieb pan2...@intel.com: > > From: Pan Li > > This patch would like to fix the ICE similar as below, assump we have > sample code: > > 1 │ int a, b, c; > 2 │ short d, e, f; > 3 │ long g (long h) { return h; } > 4 │ > 5 │ void i () { > 6 │

[PATCH v2] Vect: Fix ICE when vect_verify_loop_lens acts on relevant mode [PR116351]

2025-02-18 Thread pan2 . li
From: Pan Li This patch would like to fix the ICE similar as below, assump we have sample code: 1 │ int a, b, c; 2 │ short d, e, f; 3 │ long g (long h) { return h; } 4 │ 5 │ void i () { 6 │ for (; b; ++b) { 7 │ f = 5 >> a ? d : d << a; 8 │ e &= c