[Mlir-commits] [mlir] [mlir][llvmir] Added extra builders for CallInstrinsicOp (PR #111664)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed Oct 9 10:14:35 PDT 2024
================
@@ -3324,6 +3324,34 @@ LogicalResult CallIntrinsicOp::verify() {
return success();
}
+void CallIntrinsicOp::build(OpBuilder &builder, OperationState &state,
+ mlir::StringAttr intrin, mlir::ValueRange args) {
+ build(builder, state, /*results=*/Type{}, intrin, args, FastmathFlagsAttr{},
----------------
FMarno wrote:
Thanks, I've addressed that.
https://github.com/llvm/llvm-project/pull/111664
More information about the Mlir-commits
mailing list