[clang] [CIR] X86 vector fcmp-sse vector builtins (PR #167125)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 10 10:09:49 PST 2025
================
@@ -798,9 +855,26 @@ mlir::Value CIRGenFunction::emitX86BuiltinExpr(unsigned builtinID,
case X86::BI__builtin_ia32_vfcmaddcsh_round_mask3:
case X86::BI__builtin_ia32_vfmaddcsh_round_mask3:
case X86::BI__builtin_ia32_prefetchi:
- cgm.errorNYI(e->getSourceRange(),
+ cgm.errorNYI(E->getSourceRange(),
std::string("unimplemented X86 builtin call: ") +
- getContext().BuiltinInfo.getName(builtinID));
+ getContext().BuiltinInfo.getName(BuiltinID));
return {};
}
}
+
+mlir::Value CIRGenFunction::emitScalarOrConstFoldImmArg(unsigned ICEArguments,
----------------
andykaylor wrote:
This should be defined in CIRGenBuiltin.cpp. It will be needed by other architectures.
https://github.com/llvm/llvm-project/pull/167125
More information about the cfe-commits
mailing list