[llvm] ISel/AArch64: custom lower vector ISD::[L]LRINT (PR #89035)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Thu May 9 08:41:46 PDT 2024
================
@@ -1419,6 +1425,12 @@ AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
setOperationAction(ISD::OR, VT, Custom);
}
+ // LRINT and LLRINT.
+ for (auto VT : MVT::fp_scalable_vector_valuetypes()) {
----------------
davemgreen wrote:
I think this would fit in the loop starting at line 1516
`for (auto VT : {MVT::nxv2f16, MVT::nxv4f16, MVT::nxv8f16, MVT::nxv2f32,...`
https://github.com/llvm/llvm-project/pull/89035
More information about the llvm-commits
mailing list