[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 08:16:35 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:
IIUC, you can remove this guard and add FP16 tests instead, right? That's what I would do - it would be less noisy.
https://github.com/llvm/llvm-project/pull/195602
More information about the cfe-commits
mailing list