1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

add missing space.

llvm-svn: 67995
This commit is contained in:
Chris Lattner 2009-03-29 13:26:05 +00:00
parent be9cd842ae
commit 8e83bd3891

View 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,