StringMap.find never points to an empty bucket or tombstone, skip the check.

llvm-svn: 147546
This commit is contained in:
Benjamin Kramer 2012-01-04 20:45:14 +00:00
parent 2dd5d653f2
commit 2b84704efc
1 changed files with 2 additions and 2 deletions

View File

@ -280,13 +280,13 @@ public:
iterator find(StringRef Key) {
int Bucket = FindKey(Key);
if (Bucket == -1) return end();
return iterator(TheTable+Bucket);
return iterator(TheTable+Bucket, true);
}
const_iterator find(StringRef Key) const {
int Bucket = FindKey(Key);
if (Bucket == -1) return end();
return const_iterator(TheTable+Bucket);
return const_iterator(TheTable+Bucket, true);
}
/// lookup - Return the entry for the specified key, or a default