[Mlir-commits] [mlir] 4eeb364 - Remove declaration for unimplemented function `function_interface_impl::getFunctionType`
Mehdi Amini
llvmlistbot at llvm.org
Tue Jun 20 13:01:55 PDT 2023
Author: Mehdi Amini
Date: 2023-06-20T22:00:47+02:00
New Revision: 4eeb3647d193bd1b46d839267f75e42d1158f1dc
URL: https://github.com/llvm/llvm-project/commit/4eeb3647d193bd1b46d839267f75e42d1158f1dc
DIFF: https://github.com/llvm/llvm-project/commit/4eeb3647d193bd1b46d839267f75e42d1158f1dc.diff
LOG: Remove declaration for unimplemented function `function_interface_impl::getFunctionType`
Fix #63413
Added:
Modified:
mlir/include/mlir/IR/FunctionImplementation.h
Removed:
################################################################################
diff --git a/mlir/include/mlir/IR/FunctionImplementation.h b/mlir/include/mlir/IR/FunctionImplementation.h
index eb7979095c33c..2532aad6877e6 100644
--- a/mlir/include/mlir/IR/FunctionImplementation.h
+++ b/mlir/include/mlir/IR/FunctionImplementation.h
@@ -64,11 +64,6 @@ parseFunctionSignature(OpAsmParser &parser, bool allowVariadic,
bool &isVariadic, SmallVectorImpl<Type> &resultTypes,
SmallVectorImpl<DictionaryAttr> &resultAttrs);
-/// Get a function type corresponding to an array of arguments (which have
-/// types) and a set of result types.
-Type getFunctionType(Builder &builder, ArrayRef<OpAsmParser::Argument> argAttrs,
- ArrayRef<Type> resultTypes);
-
/// Parser implementation for function-like operations. Uses
/// `funcTypeBuilder` to construct the custom function type given lists of
/// input and output types. The parser sets the `typeAttrName` attribute to the
More information about the Mlir-commits
mailing list