From: Chris Lattner Date: Fri, 28 Nov 2008 23:57:26 +0000 (+0000) Subject: fix comment typo X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d55da4de048684e3791dbae8018666e5b7549506;p=oota-llvm.git fix comment typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60227 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/PointerIntPair.h b/include/llvm/ADT/PointerIntPair.h index d2d7ff168f8..6b437b9ff5a 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.