Re: [PATCH 2/3] Aarch64: Add __sqrt and __sqrtf intrinsics to arm_acle.h

2025-03-16 Thread Ayan Shafqat
Hi Jakub: Thank you very much for the review feedback. I have addressed the feedback in v2 of the patch [1]. See additional replies below. [1] https://gcc.gnu.org/pipermail/gcc-patches/2025-March/677754.html On Thu, Mar 13, 2025 at 10:28:52PM +0100, Jakub Jelinek wrote: > On Thu, Mar 13, 2025 at

[PATCH 2/3] Aarch64: Add __sqrt and __sqrtf intrinsics to arm_acle.h

2025-03-13 Thread Ayan Shafqat
This patch introduces two new inline functions, __sqrt and __sqrtf, in arm_acle.h for Aarch64 targets. These functions wrap the new builtins __builtin_aarch64_sqrtdf and __builtin_aarch64_sqrtsf, respectively, providing direct access to hardware instructions without relying on the standard math lib

Re: [PATCH 2/3] Aarch64: Add __sqrt and __sqrtf intrinsics to arm_acle.h

2025-03-13 Thread Jakub Jelinek
On Thu, Mar 13, 2025 at 05:23:00PM -0400, Ayan Shafqat wrote: > This patch introduces two new inline functions, __sqrt and __sqrtf, in > arm_acle.h for Aarch64 targets. These functions wrap the new builtins > __builtin_aarch64_sqrtdf and __builtin_aarch64_sqrtsf, respectively, > providing direct ac

[PATCH 2/3] AArch64: Add __sqrt and __sqrtf intrinsics to arm_acle.h

2025-03-11 Thread Ayan Shafqat
This patch introduces two new inline functions, __sqrt and __sqrtf, in arm_acle.h for AArch64 targets. These functions wrap the new builtins __builtin_aarch64_sqrtdf and __builtin_aarch64_sqrtsf, respectively, providing direct access to hardware instructions without relying on the standard math lib