[clang] [CIR][AArch64] Lower vfmaq_v f32/f64 (PR #195602)

Andrzej WarzyƄski via cfe-commits cfe-commits at lists.llvm.org
Thu May 7 07:13:26 PDT 2026


================
@@ -2092,6 +2106,13 @@ CIRGenFunction::emitAArch64BuiltinExpr(unsigned builtinID, const CallExpr *expr,
     return mlir::Value{};
   }
 
+  if (builtinID == NEON::BI__builtin_neon_vfmaq_f16) {
+    cgm.errorNYI(expr->getSourceRange(),
+                 std::string("unimplemented AArch64 builtin call: ") +
+                     getContext().BuiltinInfo.getName(builtinID));
+    return mlir::Value{};
+  }
+
----------------
banach-space wrote:

Why is this change required?

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


More information about the cfe-commits mailing list