[llvm] [clang] [SME2] Add LUTI2 and LUTI4 quad Builtins and Intrinsics (PR #73317)

Kerry McLaughlin via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 27 08:07:45 PST 2023


================
@@ -1666,7 +1674,8 @@ static unsigned SelectOpcodeFromVT(EVT VT, ArrayRef<unsigned> Opcodes) {
       return 0;
     break;
   case SelectTypeKind::FP:
-    if (EltVT != MVT::f16 && EltVT != MVT::f32 && EltVT != MVT::f64)
+    if (EltVT != MVT::bf16 && EltVT != MVT::f16 && EltVT != MVT::f32 &&
+        EltVT != MVT::f64)
----------------
kmclaughlin-arm wrote:

Is this change needed now that you're using AnyType?

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


More information about the cfe-commits mailing list