Re: [PATCH v2 7/9] RISC-V: Move helper functions above expand_const_vector

2024-08-27 Thread Jeff Law
On 8/26/24 6:37 PM, Patrick O'Neill wrote: These subroutines will be used in expand_const_vector in a future patch. Relocate so expand_const_vector can use them. gcc/ChangeLog: * config/riscv/riscv-v.cc (expand_vector_init_insert_elems): Relocate. (expand_vector_init_trailing

[PATCH v2 7/9] RISC-V: Move helper functions above expand_const_vector

2024-08-26 Thread Patrick O'Neill
These subroutines will be used in expand_const_vector in a future patch. Relocate so expand_const_vector can use them. gcc/ChangeLog: * config/riscv/riscv-v.cc (expand_vector_init_insert_elems): Relocate. (expand_vector_init_trailing_same_elem): Ditto. Signed-off-by: Patrick O'Ne