add missing space.
authorChris Lattner <sabre@nondot.org>
Sun, 29 Mar 2009 13:26:05 +0000 (13:26 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 29 Mar 2009 13:26:05 +0000 (13:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67995 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/PointerIntPair.h

index 51a0c77fdcabebaee88511e43ac16638e7c5cc8c..19b71d43c92ff13b9aba5896dfe7085492f28fe4 100644 (file)
@@ -30,10 +30,10 @@ struct DenseMapInfo;
 /// type.
 ///
 /// Note that PointerIntPair always puts the Int part in the highest bits
-/// possible.  For example, PointerIntPair<void*, 1,bool> will put the bit for
+/// possible.  For example, PointerIntPair<void*, 1, bool> will put the bit for
 /// the bool into bit #2, not bit #0, which allows the low two bits to be used
 /// for something else.  For example, this allows:
-///   PointerIntPair<PointerIntPair<void*, 1,bool>, 1, bool>
+///   PointerIntPair<PointerIntPair<void*, 1, bool>, 1, bool>
 /// ... and the two bools will land in different bits.
 ///
 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned,