diff options
author | Charlie Turner <charlie.turner@arm.com> | 2014-11-03 10:58:05 +0000 |
---|---|---|
committer | Charlie Turner <charlie.turner@arm.com> | 2014-11-03 10:58:05 +0000 |
commit | 164acd5e2d3a76cbb7c12e2f476a5f55e99652a7 (patch) | |
tree | 7a89d1bbf58b784879159c08ad7ca2bc43fb9734 /llvm | |
parent | 094d061659990525485b4399d106c4b833d3c9b7 (diff) | |
download | bcm5719-llvm-164acd5e2d3a76cbb7c12e2f476a5f55e99652a7.tar.gz bcm5719-llvm-164acd5e2d3a76cbb7c12e2f476a5f55e99652a7.zip |
Test commit.
Fixes two typos.
Change-Id: I129f647de8933e1d8f0dc9941bcb91602edce7e2
llvm-svn: 221148
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Support/Allocator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/Allocator.h b/llvm/include/llvm/Support/Allocator.h index ff08622eee5..de317719714 100644 --- a/llvm/include/llvm/Support/Allocator.h +++ b/llvm/include/llvm/Support/Allocator.h @@ -119,8 +119,8 @@ void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t BytesAllocated, /// \brief Allocate memory in an ever growing pool, as if by bump-pointer. /// /// This isn't strictly a bump-pointer allocator as it uses backing slabs of -/// memory rather than relying on boundless contiguous heap. However, it has -/// bump-pointer semantics in that is a monotonically growing pool of memory +/// memory rather than relying on a boundless contiguous heap. However, it has +/// bump-pointer semantics in that it is a monotonically growing pool of memory /// where every allocation is found by merely allocating the next N bytes in /// the slab, or the next N bytes in the next slab. /// |