[PATCH] D78708: [ARM] Extract from a VDUP
Sam Parker via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 6 00:30:10 PDT 2020
samparker added inline comments.
================
Comment at: llvm/lib/Target/ARM/ARMISelLowering.cpp:13279
+ SDValue X = Op0->getOperand(0);
+ if (VT == MVT::f16 && X.getValueType() == MVT::i32)
+ return DCI.DAG.getNode(ARMISD::VMOVhr, dl, VT, X);
----------------
And other small types have already been promoted at this point?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78708/new/
https://reviews.llvm.org/D78708
More information about the llvm-commits
mailing list