[Mlir-commits] [mlir] d976be0 - [mlir] Documentation typo fixes (#135732)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sat Sep 13 05:19:38 PDT 2025
Author: Timothy Hoffman
Date: 2025-09-13T12:19:34Z
New Revision: d976be0bb4f706a7f8d446cd5639651db66bf7a9
URL: https://github.com/llvm/llvm-project/commit/d976be0bb4f706a7f8d446cd5639651db66bf7a9
DIFF: https://github.com/llvm/llvm-project/commit/d976be0bb4f706a7f8d446cd5639651db66bf7a9.diff
LOG: [mlir] Documentation typo fixes (#135732)
Added:
Modified:
mlir/include/mlir/Transforms/DialectConversion.h
mlir/include/mlir/Transforms/Passes.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Transforms/DialectConversion.h b/mlir/include/mlir/Transforms/DialectConversion.h
index f8caae3ce9995..bfbe12d2a5668 100644
--- a/mlir/include/mlir/Transforms/DialectConversion.h
+++ b/mlir/include/mlir/Transforms/DialectConversion.h
@@ -223,7 +223,7 @@ class TypeConverter {
}
/// Register a conversion function for attributes within types. Type
- /// converters may call this function in order to allow hoking into the
+ /// converters may call this function in order to allow hooking into the
/// translation of attributes that exist within types. For example, a type
/// converter for the `memref` type could use these conversions to convert
/// memory spaces or layouts in an extensible way.
diff --git a/mlir/include/mlir/Transforms/Passes.td b/mlir/include/mlir/Transforms/Passes.td
index 039fbaed47165..beb59784947c5 100644
--- a/mlir/include/mlir/Transforms/Passes.td
+++ b/mlir/include/mlir/Transforms/Passes.td
@@ -364,8 +364,8 @@ def Mem2Reg : Pass<"mem2reg"> {
let description = [{
This pass removes loads out of and stores into a memory slot, and turns
them into direct uses of SSA values. This is done generically using the
- `PromoteAllocationOpInterface`, `PromoteOpInterface` and
- `PromoteMemOpInterface` interfaces.
+ `PromotableAllocationOpInterface`, `PromotableOpInterface` and
+ `PromotableMemOpInterface` interfaces.
This pass will attempt to compute which definitions of the content of
the memory slot reach operations that use the memory slot pointer. It
More information about the Mlir-commits
mailing list