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 b037bce commit 32bc029Copy full SHA for 32bc029
llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
@@ -4748,7 +4748,7 @@ InstructionCost AArch64TTIImpl::getShuffleCost(
4748
LT.second.getVectorNumElements() / 2) {
4749
if (Index == 0)
4750
return 0;
4751
- if (Index == LT.second.getVectorNumElements() / 2)
+ if (Index == (int)LT.second.getVectorNumElements() / 2)
4752
return 1;
4753
}
4754
Kind = TTI::SK_PermuteSingleSrc;
0 commit comments