summaryrefslogtreecommitdiff
path: root/lib/Support/FoldingSet.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-30 23:16:22 +0000
committerChris Lattner <sabre@nondot.org>2007-01-30 23:16:22 +0000
commit3cab071f6f1534ff424d4b947715ae758edca790 (patch)
tree76042cf370780d97fec055ad1f1a156f4bd51435 /lib/Support/FoldingSet.cpp
parent0a19ffaf58495b8a1165dd5520a29a3702d62d27 (diff)
downloadllvm-3cab071f6f1534ff424d4b947715ae758edca790.tar.gz
llvm-3cab071f6f1534ff424d4b947715ae758edca790.tar.bz2
llvm-3cab071f6f1534ff424d4b947715ae758edca790.tar.xz
reformat comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/FoldingSet.cpp')
-rw-r--r--lib/Support/FoldingSet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Support/FoldingSet.cpp b/lib/Support/FoldingSet.cpp
index bcab5b3ec4..716fe99b52 100644
--- a/lib/Support/FoldingSet.cpp
+++ b/lib/Support/FoldingSet.cpp
@@ -125,8 +125,8 @@ bool FoldingSetImpl::NodeID::operator==(const FoldingSetImpl::NodeID &RHS)const{
/// singly-linked-list. In order to make deletion more efficient, we make
/// the list circular, so we can delete a node without computing its hash.
/// The problem with this is that the start of the hash buckets are not
-/// Nodes. If NextInBucketPtr is a bucket pointer, this method returns null
-/// : use GetBucketPtr when this happens.
+/// Nodes. If NextInBucketPtr is a bucket pointer, this method returns null:
+/// use GetBucketPtr when this happens.
static FoldingSetImpl::Node *GetNextPtr(void *NextInBucketPtr,
void **Buckets, unsigned NumBuckets) {
if (NextInBucketPtr >= Buckets && NextInBucketPtr < Buckets + NumBuckets)