[PATCH] lower-bitint: Fix up handling of uninitialized large/huge _BitInt call arguments [PR113316]

2024-01-12 Thread Jakub Jelinek
Hi! The code to assign large/huge _BitInt SSA_NAMEs to partitions intentionally ignores uninitialized SSA_NAMEs: /* Also ignore uninitialized uses. */ if (SSA_NAME_IS_DEFAULT_DEF (s) && (!SSA_NAME_VAR (s) || VAR_P (SSA_NAME_VAR (s continue; becaus

Re: [PATCH] lower-bitint: Fix up handling of uninitialized large/huge _BitInt call arguments [PR113316]

2024-01-12 Thread Richard Biener
On Fri, 12 Jan 2024, Jakub Jelinek wrote: > Hi! > > The code to assign large/huge _BitInt SSA_NAMEs to partitions intentionally > ignores uninitialized SSA_NAMEs: > /* Also ignore uninitialized uses. */ > if (SSA_NAME_IS_DEFAULT_DEF (s) > && (!SSA_NAME_VAR (s) |