[llvm] Add IRBuilder::CreateFMA (PR #131112)
Frederik Harwath via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 06:56:25 PDT 2025
================
@@ -1065,6 +1065,13 @@ class IRBuilderBase {
{Src, Exp}, FMFSource, Name);
}
+ /// Create call to the fma intrinsic.
+ Value *CreateFMA(Value *Factor1, Value *Factor2, Value *Summand,
+ FMFSource FMFSource = {}, const Twine &Name = "") {
+ return CreateIntrinsic(Intrinsic::fma, {Factor1->getType()},
----------------
frederik-h wrote:
Ok, I have added it now.
https://github.com/llvm/llvm-project/pull/131112
More information about the llvm-commits
mailing list