diff options
author | Dan Gohman <gohman@apple.com> | 2010-03-01 17:51:02 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-03-01 17:51:02 +0000 |
commit | 01b443fdd3969ba199e0aa50d0d4596ed09b9fd1 (patch) | |
tree | ce4885051a3c158335b145b234b08c8ffb42b421 /llvm/unittests/Support/AllocatorTest.cpp | |
parent | 8b0a419eb18b93ae058391712edf4c2a43c4f325 (diff) | |
download | llvm-01b443fdd3969ba199e0aa50d0d4596ed09b9fd1.zip llvm-01b443fdd3969ba199e0aa50d0d4596ed09b9fd1.tar.gz llvm-01b443fdd3969ba199e0aa50d0d4596ed09b9fd1.tar.bz2 |
Spelling fixes.
llvm-svn: 97454
Diffstat (limited to 'llvm/unittests/Support/AllocatorTest.cpp')
-rw-r--r-- | llvm/unittests/Support/AllocatorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/AllocatorTest.cpp b/llvm/unittests/Support/AllocatorTest.cpp index 2a01f3a..6c0fca9 100644 --- a/llvm/unittests/Support/AllocatorTest.cpp +++ b/llvm/unittests/Support/AllocatorTest.cpp @@ -88,7 +88,7 @@ TEST(AllocatorTest, TestOverflow) { Alloc.Allocate(4096 - sizeof(MemSlab), 0); EXPECT_EQ(1U, Alloc.GetNumSlabs()); - // If we dont't allocate a new slab, then we will have overflowed. + // If we don't allocate a new slab, then we will have overflowed. Alloc.Allocate(1, 0); EXPECT_EQ(2U, Alloc.GetNumSlabs()); } |