From: George Date: Mon, 18 May 2020 18:40:32 +0000 (-0400) Subject: Fixed a typo in the comment for allocateBuffer() X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c4ef745557506a51c5fc6db3d1cabeb8a133923;p=platform%2Fupstream%2Fllvm.git Fixed a typo in the comment for allocateBuffer() Differential Revision: https://reviews.llvm.org/D80087 --- diff --git a/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp b/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp index 8218976..cbe6da3 100644 --- a/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp +++ b/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp @@ -1675,7 +1675,7 @@ struct AllocLikeOpLowering : public ConvertOpToLLVMPattern { /// Allocates the underlying buffer using the right call. `allocatedBytePtr` /// is set to null for stack allocations. `accessAlignment` is set if - /// alignment is neeeded post allocation (for eg. in conjunction with malloc). + /// alignment is needed post allocation (for eg. in conjunction with malloc). Value allocateBuffer(Location loc, Value cumulativeSize, Operation *op, MemRefType memRefType, Value one, Value &accessAlignment, Value &allocatedBytePtr,