summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/PointerIntPair.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-28 23:57:26 +0000
committerChris Lattner <sabre@nondot.org>2008-11-28 23:57:26 +0000
commitd55da4de048684e3791dbae8018666e5b7549506 (patch)
treebdde0c587d7511279be220a8db272c49641bf653 /include/llvm/ADT/PointerIntPair.h
parent762ac83271ec442d2aea76d1ea9983bfefb22bba (diff)
downloadllvm-d55da4de048684e3791dbae8018666e5b7549506.tar.gz
llvm-d55da4de048684e3791dbae8018666e5b7549506.tar.bz2
llvm-d55da4de048684e3791dbae8018666e5b7549506.tar.xz
fix comment typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/PointerIntPair.h')
-rw-r--r--include/llvm/ADT/PointerIntPair.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/PointerIntPair.h b/include/llvm/ADT/PointerIntPair.h
index d2d7ff168f..6b437b9ff5 100644
--- a/include/llvm/ADT/PointerIntPair.h
+++ b/include/llvm/ADT/PointerIntPair.h
@@ -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.