[llvm] [AArch64] Fix SVE cost model for various math intrinsics (PR #184358)
Paul Walker via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 3 07:58:32 PST 2026
================
@@ -696,6 +696,13 @@ AArch64TTIImpl::getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA,
break;
}
case Intrinsic::abs: {
+ if (isa<ScalableVectorType>(RetTy) && ST->hasSVE()) {
----------------
paulwalker-arm wrote:
```suggestion
if (isa<ScalableVectorType>(RetTy) && ST->isSVEorStreamingSVEAvailable()) {
```
https://github.com/llvm/llvm-project/pull/184358
More information about the llvm-commits
mailing list