[llvm] [SelectionDAG] Use ExpandIntRes_CLMUL to expand vector CLMUL via narrower legal types (PR #184468)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 6 04:01:09 PST 2026
================
@@ -1329,6 +1329,8 @@ AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
setOperationAction(ISD::CTLS, VT, Legal);
setOperationAction(ISD::BITREVERSE, MVT::v8i8, Legal);
setOperationAction(ISD::BITREVERSE, MVT::v16i8, Legal);
+ setOperationAction(ISD::BITREVERSE, MVT::v4i16, Custom);
----------------
davemgreen wrote:
Nice - thanks.
https://github.com/llvm/llvm-project/pull/184468
More information about the llvm-commits
mailing list