[llvm-commits] [llvm] r97454 - /llvm/trunk/unittests/Support/AllocatorTest.cpp
Dan Gohman
gohman at apple.com
Mon Mar 1 09:51:02 PST 2010
Author: djg
Date: Mon Mar 1 11:51:02 2010
New Revision: 97454
URL: http://llvm.org/viewvc/llvm-project?rev=97454&view=rev
Log:
Spelling fixes.
Modified:
llvm/trunk/unittests/Support/AllocatorTest.cpp
Modified: llvm/trunk/unittests/Support/AllocatorTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Support/AllocatorTest.cpp?rev=97454&r1=97453&r2=97454&view=diff
==============================================================================
--- llvm/trunk/unittests/Support/AllocatorTest.cpp (original)
+++ llvm/trunk/unittests/Support/AllocatorTest.cpp Mon Mar 1 11:51:02 2010
@@ -88,7 +88,7 @@
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());
}
More information about the llvm-commits
mailing list