Re: [PATCH] vect: Avoid copying of uninitialized variable [PR118628]
> Am 23.01.2025 um 19:32 schrieb Jakub Jelinek : > > Hi! > > vectorizable_{store,load} does roughly > tree offvar; > tree running_off; > if (!costing_p) >{ > ... initialize offvar ... >} > running_off = offvar; > for (...) >{ > if (costing_p) >
[PATCH] vect: Avoid copying of uninitialized variable [PR118628]
Hi! vectorizable_{store,load} does roughly tree offvar; tree running_off; if (!costing_p) { ... initialize offvar ... } running_off = offvar; for (...) { if (costing_p) { ... continue;