[all-commits] [llvm/llvm-project] 53d89e: [AArch64][Clang][NEON] Remove undefined vcmla intr...
SpencerAbson via All-commits
all-commits at lists.llvm.org
Thu Oct 17 03:16:28 PDT 2024
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 53d89ef34005f4dc4f764db0c009130bb52a6a78
https://github.com/llvm/llvm-project/commit/53d89ef34005f4dc4f764db0c009130bb52a6a78
Author: SpencerAbson <Spencer.Abson at arm.com>
Date: 2024-10-17 (Thu, 17 Oct 2024)
Changed paths:
M clang/include/clang/Basic/arm_neon.td
M clang/test/Sema/aarch64-neon-target.c
A clang/test/Sema/aarch64-vcmla-undef.c
Log Message:
-----------
[AArch64][Clang][NEON] Remove undefined vcmla intrinsics (#112575)
arm_neon.td currently generates the same 24 `vcmla` intrinsic prototypes
for each of the f16, f32, and f64 base types. This is incorrect, the
only valid vcmla intrinsics for the f64 base type are:
- `vcmlaq_f64`
- `vcmlaq_rot90_f64`
- `vcmlaq_rot180_f64`
- `vcmlaq_rot270_f64`
(see ACLE
https://github.com/ARM-software/acle/blob/main/neon_intrinsics/advsimd.md)
This patch removes the incorrect intrinsic prototypes.
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list