We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b2005d commit 1e99926Copy full SHA for 1e99926
llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
@@ -334,9 +334,9 @@ bool AArch64TTIImpl::shouldMaximizeVectorBandwidth(
334
TargetTransformInfo::RegisterKind K) const {
335
assert(K != TargetTransformInfo::RGK_Scalar);
336
return ((K == TargetTransformInfo::RGK_FixedWidthVector &&
337
- ST->isNeonAvailable()) ||
+ ST->isNeonAvailable()) ||
338
(K == TargetTransformInfo::RGK_ScalableVector &&
339
- ST->isSVEorStreamingSVEAvailable()));
+ ST->isSVEorStreamingSVEAvailable()));
340
}
341
342
/// Calculate the cost of materializing a 64-bit value. This helper
0 commit comments