[llvm-commits] [llvm] r60227 - /llvm/trunk/include/llvm/ADT/PointerIntPair.h
Chris Lattner
sabre at nondot.org
Fri Nov 28 15:57:26 PST 2008
Author: lattner
Date: Fri Nov 28 17:57:26 2008
New Revision: 60227
URL: http://llvm.org/viewvc/llvm-project?rev=60227&view=rev
Log:
fix comment typo
Modified:
llvm/trunk/include/llvm/ADT/PointerIntPair.h
Modified: llvm/trunk/include/llvm/ADT/PointerIntPair.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/PointerIntPair.h?rev=60227&r1=60226&r2=60227&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/PointerIntPair.h (original)
+++ llvm/trunk/include/llvm/ADT/PointerIntPair.h Fri Nov 28 17:57:26 2008
@@ -19,7 +19,7 @@
namespace llvm {
/// PointerIntPair - This class implements a pair of a pointer and small
-/// integer. It is designed to represet this in the space required by one
+/// integer. It is designed to represent this in the space required by one
/// pointer by bitmangling the integer into the low part of the pointer. This
/// can only be done for small integers: typically up to 3 bits, but it depends
/// on the alignment returned by the allocator in use.
More information about the llvm-commits
mailing list