diff options
author | Christian Sigg <csigg@google.com> | 2019-10-04 04:37:14 -0700 |
---|---|---|
committer | A. Unique TensorFlower <gardener@tensorflow.org> | 2019-10-04 04:37:53 -0700 |
commit | 85dcaf19c721c4c745cd4fa3972aa9093acd69d3 (patch) | |
tree | c311b0c28846249bdfaa6f124ceda4b79d5757be /mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp | |
parent | 5830f71a45df33e24c864bea4c5de070be47b488 (diff) | |
download | bcm5719-llvm-85dcaf19c721c4c745cd4fa3972aa9093acd69d3.tar.gz bcm5719-llvm-85dcaf19c721c4c745cd4fa3972aa9093acd69d3.zip |
Fix typos, NFC.
PiperOrigin-RevId: 272851237
Diffstat (limited to 'mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp')
-rw-r--r-- | mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp b/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp index 02d661a4270..c4bf7cdd9f7 100644 --- a/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp +++ b/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp @@ -745,7 +745,7 @@ struct CallOpInterfaceLowering : public LLVMLegalizationPattern<CallOpType> { auto newOp = rewriter.create<LLVM::CallOp>(op->getLoc(), packedResult, promoted, op->getAttrs()); - // If < 2 results, packingdid not do anything and we can just return. + // If < 2 results, packing did not do anything and we can just return. if (numResults < 2) { SmallVector<Value *, 4> results(newOp.getResults()); rewriter.replaceOp(op, results); @@ -980,7 +980,7 @@ struct LoadOpLowering : public LoadStoreOpLowering<LoadOp> { } }; -// Store opreation is lowered to obtaining a pointer to the indexed element, +// Store operation is lowered to obtaining a pointer to the indexed element, // and storing the given value to it. struct StoreOpLowering : public LoadStoreOpLowering<StoreOp> { using Base::Base; |