diff options
author | Jonathan Roelofs <jroelofs@jroelofs.com> | 2020-04-10 08:18:34 -0600 |
---|---|---|
committer | Jonathan Roelofs <jroelofs@jroelofs.com> | 2020-04-11 09:11:35 -0600 |
commit | 015ebd2930bd07bc535769eae2184e9ae2f3c86a (patch) | |
tree | 14a47787810b8bd0283d3829be4fd51a20f4c6d5 | |
parent | 3737be8902b2c9174f253dfab6da0bb051ee259f (diff) | |
download | llvm-015ebd2930bd07bc535769eae2184e9ae2f3c86a.zip llvm-015ebd2930bd07bc535769eae2184e9ae2f3c86a.tar.gz llvm-015ebd2930bd07bc535769eae2184e9ae2f3c86a.tar.bz2 |
[mlir][toy] Fix comment typo. NFC
Differential Revision: https://reviews.llvm.org/D77917
-rw-r--r-- | mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp | 2 | ||||
-rw-r--r-- | mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp b/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp index 9c36f11..3991799 100644 --- a/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp +++ b/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp @@ -167,7 +167,7 @@ void ToyToLLVMLoweringPass::runOnOperation() { target.addLegalOp<ModuleOp, ModuleTerminatorOp>(); // During this lowering, we will also be lowering the MemRef types, that are - // currently being operated on, to a representation in LLVM. Do perform this + // currently being operated on, to a representation in LLVM. To perform this // conversion we use a TypeConverter as part of the lowering. This converter // details how one type maps to another. This is necessary now that we will be // doing more complicated lowerings, involving loop region arguments. diff --git a/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp b/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp index 9c36f11..3991799 100644 --- a/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp +++ b/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp @@ -167,7 +167,7 @@ void ToyToLLVMLoweringPass::runOnOperation() { target.addLegalOp<ModuleOp, ModuleTerminatorOp>(); // During this lowering, we will also be lowering the MemRef types, that are - // currently being operated on, to a representation in LLVM. Do perform this + // currently being operated on, to a representation in LLVM. To perform this // conversion we use a TypeConverter as part of the lowering. This converter // details how one type maps to another. This is necessary now that we will be // doing more complicated lowerings, involving loop region arguments. |