[llvm] [AArch64][SVE] Lower scalar FP converts to SVE when Neon is unavailable (PR #112564)

Benjamin Maxwell via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 23 02:17:14 PDT 2024


================
@@ -1454,8 +1454,12 @@ AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
       setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
       setOperationAction(ISD::UINT_TO_FP, VT, Custom);
       setOperationAction(ISD::SINT_TO_FP, VT, Custom);
+      setOperationAction(ISD::STRICT_UINT_TO_FP, VT, Custom);
+      setOperationAction(ISD::STRICT_SINT_TO_FP, VT, Custom);
----------------
MacDue wrote:

Alright, removed the strict conversions for now :+1: 

https://github.com/llvm/llvm-project/pull/112564


More information about the llvm-commits mailing list