Fixed 80 col. violation.
authorTed Kremenek <kremenek@apple.com>
Mon, 4 Feb 2008 17:14:20 +0000 (17:14 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 4 Feb 2008 17:14:20 +0000 (17:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46709 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/FoldingSet.cpp

index 753eb240be80bd11bef43b5ab40899ee76b3e408..1e8c732a14875a2263954d21bb65810e34dbe3a4 100644 (file)
@@ -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;