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

2024-08-25 Thread Jeff Law
On 8/22/24 1:46 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 8/9] RISC-V: Move helper functions above expand_const_vector

2024-08-22 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