[Mlir-commits] [mlir] 9b15fae - [mlir][doc] Remove outdated section about a deprecated `OpBuilder` use
Markus Böck
llvmlistbot at llvm.org
Tue Feb 7 08:04:21 PST 2023
Author: Markus Böck
Date: 2023-02-07T17:04:45+01:00
New Revision: 9b15faebb97310080fc8cfd13e1cc5af0f45e038
URL: https://github.com/llvm/llvm-project/commit/9b15faebb97310080fc8cfd13e1cc5af0f45e038
DIFF: https://github.com/llvm/llvm-project/commit/9b15faebb97310080fc8cfd13e1cc5af0f45e038.diff
LOG: [mlir][doc] Remove outdated section about a deprecated `OpBuilder` use
This syntax has been removed two years ago in https://github.com/llvm/llvm-project/commit/2f5569f6f67a30f7774f7c2d2f3d726752a862ae yet the doc still had a section marking them as deprecated
Added:
Modified:
mlir/docs/DefiningDialects/Operations.md
Removed:
################################################################################
diff --git a/mlir/docs/DefiningDialects/Operations.md b/mlir/docs/DefiningDialects/Operations.md
index b904ed7d8a75..1411a9f239c1 100644
--- a/mlir/docs/DefiningDialects/Operations.md
+++ b/mlir/docs/DefiningDialects/Operations.md
@@ -557,12 +557,6 @@ MyOp::build(::mlir::OpBuilder &builder, ::mlir::OperationState &state,
}
```
-**Deprecated:** `OpBuilder` class allows one to specify the custom builder
-signature as a raw string, without separating parameters into
diff erent `dag`
-arguments. It also supports leading parameters of `OpBuilder &` and
-`OperationState &` types, which will be used instead of the autogenerated ones
-if present.
-
### Custom parser and printer methods
Functions to parse and print the operation's custom assembly form.
More information about the Mlir-commits
mailing list