diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-01-30 23:16:22 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-01-30 23:16:22 +0000 |
| commit | a94523df7b4fbf63d6dbf7e0e60b29094d7f355f (patch) | |
| tree | 56b33f14621132320b067a171c16709b54368e8f /llvm/lib | |
| parent | e3eda25641c853972fb1be975a5094b2fa084741 (diff) | |
| download | bcm5719-llvm-a94523df7b4fbf63d6dbf7e0e60b29094d7f355f.tar.gz bcm5719-llvm-a94523df7b4fbf63d6dbf7e0e60b29094d7f355f.zip | |
reformat comment
llvm-svn: 33675
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Support/FoldingSet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/FoldingSet.cpp b/llvm/lib/Support/FoldingSet.cpp index bcab5b3ec43..716fe99b521 100644 --- a/llvm/lib/Support/FoldingSet.cpp +++ b/llvm/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) |

