forked from OSchip/llvm-project
[mlir] Fix typo s/utilties/utilities/ (including in file name)
Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D136887
This commit is contained in:
parent
fb391e45e9
commit
17dbd80ff7
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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"],
|
||||
|
|
Loading…
Reference in New Issue