[Mlir-commits] [mlir] 17dbd80 - [mlir] Fix typo s/utilties/utilities/ (including in file name)
Emilio Cota
llvmlistbot at llvm.org
Thu Oct 27 14:15:39 PDT 2022
Author: Emilio Cota
Date: 2022-10-27T17:14:33-04:00
New Revision: 17dbd80ff72cb235a59e79c01555753ed11114d3
URL: https://github.com/llvm/llvm-project/commit/17dbd80ff72cb235a59e79c01555753ed11114d3
DIFF: https://github.com/llvm/llvm-project/commit/17dbd80ff72cb235a59e79c01555753ed11114d3.diff
LOG: [mlir] Fix typo s/utilties/utilities/ (including in file name)
Reviewed By: rriddle
Differential Revision: https://reviews.llvm.org/D136887
Added:
mlir/include/mlir/Tools/ParseUtilities.h
Modified:
mlir/docs/Interfaces.md
mlir/lib/ExecutionEngine/JitRunner.cpp
mlir/lib/Tools/mlir-opt/MlirOptMain.cpp
mlir/lib/Tools/mlir-reduce/MlirReduceMain.cpp
mlir/lib/Tools/mlir-translate/Translation.cpp
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Removed:
mlir/include/mlir/Tools/ParseUtilties.h
################################################################################
diff --git a/mlir/docs/Interfaces.md b/mlir/docs/Interfaces.md
index 15e35d08407a7..c66aabd59dabe 100644
--- a/mlir/docs/Interfaces.md
+++ b/mlir/docs/Interfaces.md
@@ -398,7 +398,7 @@ comprised of the following components:
- Additional C++ code that is injected into the declarations of both the
interface and the trait class. This allows for defining methods and more
that are exposed on both the interface and the trait class, e.g. to inject
- utilties on both the interface and the derived entity implementing the
+ utilities on both the interface and the derived entity implementing the
interface (e.g. attribute, operation, etc.).
- In non-static methods, `$_attr`/`$_op`/`$_type`
(depending on the type of interface) may be used to refer to an
diff --git a/mlir/include/mlir/Tools/ParseUtilties.h b/mlir/include/mlir/Tools/ParseUtilities.h
similarity index 100%
rename from mlir/include/mlir/Tools/ParseUtilties.h
rename to mlir/include/mlir/Tools/ParseUtilities.h
diff --git a/mlir/lib/ExecutionEngine/JitRunner.cpp b/mlir/lib/ExecutionEngine/JitRunner.cpp
index c6df0e41b4f71..8a1c4b0f4ed04 100644
--- a/mlir/lib/ExecutionEngine/JitRunner.cpp
+++ b/mlir/lib/ExecutionEngine/JitRunner.cpp
@@ -23,7 +23,7 @@
#include "mlir/IR/MLIRContext.h"
#include "mlir/Parser/Parser.h"
#include "mlir/Support/FileUtilities.h"
-#include "mlir/Tools/ParseUtilties.h"
+#include "mlir/Tools/ParseUtilities.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h"
diff --git a/mlir/lib/Tools/mlir-opt/MlirOptMain.cpp b/mlir/lib/Tools/mlir-opt/MlirOptMain.cpp
index 24eb6dba30370..7215e5ffa3980 100644
--- a/mlir/lib/Tools/mlir-opt/MlirOptMain.cpp
+++ b/mlir/lib/Tools/mlir-opt/MlirOptMain.cpp
@@ -27,7 +27,7 @@
#include "mlir/Support/FileUtilities.h"
#include "mlir/Support/Timing.h"
#include "mlir/Support/ToolUtilities.h"
-#include "mlir/Tools/ParseUtilties.h"
+#include "mlir/Tools/ParseUtilities.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/FileUtilities.h"
#include "llvm/Support/InitLLVM.h"
diff --git a/mlir/lib/Tools/mlir-reduce/MlirReduceMain.cpp b/mlir/lib/Tools/mlir-reduce/MlirReduceMain.cpp
index a3eab15e0f893..c1570dda412b1 100644
--- a/mlir/lib/Tools/mlir-reduce/MlirReduceMain.cpp
+++ b/mlir/lib/Tools/mlir-reduce/MlirReduceMain.cpp
@@ -22,7 +22,7 @@
#include "mlir/Rewrite/FrozenRewritePatternSet.h"
#include "mlir/Support/FileUtilities.h"
#include "mlir/Support/LogicalResult.h"
-#include "mlir/Tools/ParseUtilties.h"
+#include "mlir/Tools/ParseUtilities.h"
#include "llvm/Support/InitLLVM.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/ToolOutputFile.h"
diff --git a/mlir/lib/Tools/mlir-translate/Translation.cpp b/mlir/lib/Tools/mlir-translate/Translation.cpp
index 1eb285e8f798a..ab86cd0000b99 100644
--- a/mlir/lib/Tools/mlir-translate/Translation.cpp
+++ b/mlir/lib/Tools/mlir-translate/Translation.cpp
@@ -16,7 +16,7 @@
#include "mlir/IR/Dialect.h"
#include "mlir/IR/Verifier.h"
#include "mlir/Parser/Parser.h"
-#include "mlir/Tools/ParseUtilties.h"
+#include "mlir/Tools/ParseUtilities.h"
#include "llvm/Support/SourceMgr.h"
using namespace mlir;
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index 112caa52faa83..45a3bad5f66ad 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -6203,7 +6203,7 @@ cc_library(
srcs = glob([
"lib/Tools/mlir-translate/*.cpp",
]) + [
- "include/mlir/Tools/ParseUtilties.h",
+ "include/mlir/Tools/ParseUtilities.h",
],
hdrs = glob(["include/mlir/Tools/mlir-translate/*.h"]),
includes = ["include"],
@@ -6497,7 +6497,7 @@ cc_library(
cc_library(
name = "MlirOptLib",
srcs = [
- "include/mlir/Tools/ParseUtilties.h",
+ "include/mlir/Tools/ParseUtilities.h",
"lib/Tools/mlir-opt/MlirOptMain.cpp",
],
hdrs = ["include/mlir/Tools/mlir-opt/MlirOptMain.h"],
@@ -6733,7 +6733,7 @@ cc_library(
srcs = ["lib/ExecutionEngine/JitRunner.cpp"],
hdrs = [
"include/mlir/ExecutionEngine/JitRunner.h",
- "include/mlir/Tools/ParseUtilties.h",
+ "include/mlir/Tools/ParseUtilities.h",
],
includes = ["include"],
deps = [
@@ -9999,7 +9999,7 @@ cc_library(
name = "MlirReduceLib",
srcs = ["lib/Tools/mlir-reduce/MlirReduceMain.cpp"],
hdrs = [
- "include/mlir/Tools/ParseUtilties.h",
+ "include/mlir/Tools/ParseUtilities.h",
"include/mlir/Tools/mlir-reduce/MlirReduceMain.h",
],
includes = ["include"],
More information about the Mlir-commits
mailing list