回复: Re: [PATCH] RISC-V: Refine registered_functions list for rvv overloaded intrinsics.

2025-01-08 Thread xu...@eswincomputing.com
Yes, all the RVV intrinsics have passed. Committed, thanks juzhe. xu...@eswincomputing.com 发件人: 钟居哲 发送时间: 2025-01-08 20:11 收件人: xuli1; gcc-patches 抄送: kito.cheng; palmer; Li, Pan2; xuli1 主题: Re: [PATCH] RISC-V: Refine registered_functions list for rvv overloaded intrinsics. Thanks for

Re: [PATCH] RISC-V: Refine registered_functions list for rvv overloaded intrinsics.

2025-01-08 Thread 钟居哲
: [PATCH] RISC-V: Refine registered_functions list for rvv overloaded intrinsics. From: xuli Before this patch, each rvv overloaded intrinsic was registered twice, both in gcc and g++. Take vint8mf8_t __riscv_vle8(vbool64_t vm, const int8_t *rs1, size_t vl) as an example. For gcc, one decl

[PATCH] RISC-V: Refine registered_functions list for rvv overloaded intrinsics.

2025-01-08 Thread Li Xu
From: xuli Before this patch, each rvv overloaded intrinsic was registered twice, both in gcc and g++. Take vint8mf8_t __riscv_vle8(vbool64_t vm, const int8_t *rs1, size_t vl) as an example. For gcc, one decl is void __riscv_vle8(void), and the other is integer_zero_node, which is redundant. Fo