Re: [PATCH 05/10] c: Fix an assumption that vectors sizes are known at compile-time.

2024-11-07 Thread Richard Sandiford
Tejas Belagod writes: > There is an assumption in many places in c-typeck.cc that GNU vectors sizes > are > always known at compile time. SVE vectors now piggy-back on GNU vector code > so this patch changes one of the places where there is an assumption of > vectors > being fixed-length to bei

[PATCH 05/10] c: Fix an assumption that vectors sizes are known at compile-time.

2024-11-06 Thread Tejas Belagod
There is an assumption in many places in c-typeck.cc that GNU vectors sizes are always known at compile time. SVE vectors now piggy-back on GNU vector code so this patch changes one of the places where there is an assumption of vectors being fixed-length to being variable width. gcc/ChangeLog: