diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-02-04 17:14:20 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-02-04 17:14:20 +0000 |
commit | 726933a5891c8ae2fae5d986e61f7c015d6a4895 (patch) | |
tree | 2c36423faf1c0bebec1188c46340152c9c67a597 /llvm/lib/Support/FoldingSet.cpp | |
parent | 2cdfd6670e08e1bd6e4c112b1e27a22d4c3b67d1 (diff) | |
download | bcm5719-llvm-726933a5891c8ae2fae5d986e61f7c015d6a4895.tar.gz bcm5719-llvm-726933a5891c8ae2fae5d986e61f7c015d6a4895.zip |
Fixed 80 col. violation.
llvm-svn: 46709
Diffstat (limited to 'llvm/lib/Support/FoldingSet.cpp')
-rw-r--r-- | llvm/lib/Support/FoldingSet.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Support/FoldingSet.cpp b/llvm/lib/Support/FoldingSet.cpp index 753eb240be8..1e8c732a148 100644 --- a/llvm/lib/Support/FoldingSet.cpp +++ b/llvm/lib/Support/FoldingSet.cpp @@ -221,8 +221,10 @@ void FoldingSetImpl::GrowHashTable() { /// FindNodeOrInsertPos - Look up the node specified by ID. If it exists, /// return it. If not, return the insertion token that will make insertion /// faster. -FoldingSetImpl::Node *FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID, - void *&InsertPos) { +FoldingSetImpl::Node +*FoldingSetImpl::FindNodeOrInsertPos(const FoldingSetNodeID &ID, + void *&InsertPos) { + void **Bucket = GetBucketFor(ID, Buckets, NumBuckets); void *Probe = *Bucket; |