[PATCH] D77718: [ARM] Combines for VMOVN
Eli Friedman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 14 15:13:34 PDT 2020
efriedma added inline comments.
================
Comment at: llvm/lib/Target/ARM/ARMISelLowering.cpp:14316
+ // into the top or bottom lanes.
+ unsigned NumElts = N->getValueType(0).getVectorNumElements();
+ APInt Op0DemandedElts = APInt::getNullValue(NumElts);
----------------
ctetreau wrote:
> getVectorNumElements is going away soon. Please do the cast.
>
> See: D77278
This is EVT::getVectorNumElements(); that's not going away, and there is no such cast.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77718/new/
https://reviews.llvm.org/D77718
More information about the llvm-commits
mailing list