make smallptrset more const and type correct, which caught a few

minor bugs.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43782 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2007-11-06 22:12:43 +00:00
parent 0d97426b7b
commit 373a733be0
2 changed files with 30 additions and 15 deletions

View File

@ -36,7 +36,7 @@ void SmallPtrSetImpl::shrink_and_clear() {
CurArray[CurArraySize] = 0;
}
bool SmallPtrSetImpl::insert(const void * Ptr) {
bool SmallPtrSetImpl::insert_imp(const void * Ptr) {
if (isSmall()) {
// Check to see if it is already in the set.
for (const void **APtr = SmallArray, **E = SmallArray+NumElements;
@ -69,7 +69,7 @@ bool SmallPtrSetImpl::insert(const void * Ptr) {
return true;
}
bool SmallPtrSetImpl::erase(const void * Ptr) {
bool SmallPtrSetImpl::erase_imp(const void * Ptr) {
if (isSmall()) {
// Check to see if it is in the set.
for (const void **APtr = SmallArray, **E = SmallArray+NumElements;