summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/PointerIntPair.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-29 13:26:05 +0000
committerChris Lattner <sabre@nondot.org>2009-03-29 13:26:05 +0000
commit54e01d06db7c04208a684e34cb82b0847a077261 (patch)
tree56c83f902c1be0258f1f9a75b050d805ebd3290b /include/llvm/ADT/PointerIntPair.h
parent3a9fe06bfe30da6fb1e0a540f05877c3640c7335 (diff)
downloadllvm-54e01d06db7c04208a684e34cb82b0847a077261.tar.gz
llvm-54e01d06db7c04208a684e34cb82b0847a077261.tar.bz2
llvm-54e01d06db7c04208a684e34cb82b0847a077261.tar.xz
add missing space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67995 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/PointerIntPair.h')
-rw-r--r--include/llvm/ADT/PointerIntPair.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/PointerIntPair.h b/include/llvm/ADT/PointerIntPair.h
index 51a0c77fdc..19b71d43c9 100644
--- a/include/llvm/ADT/PointerIntPair.h
+++ b/include/llvm/ADT/PointerIntPair.h
@@ -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,