1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Spelling fixes.

llvm-svn: 97454
This commit is contained in:
Dan Gohman 2010-03-01 17:51:02 +00:00
parent c08c48c9f3
commit 3065dbd8e0

View File

@ -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());
}