aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/SmallPtrSet.h
Commit message (Expand)AuthorAgeFilesLines
* Allow SmallPtrSet to hold pointers to const data.Owen Anderson2007-07-271-13/+13
* Unbreak the build by putting calls to free into the implementation file andReid Spencer2007-07-171-4/+1
* Use realloc() to (potentially) resize the contents of SmallPtrSet in place.Owen Anderson2007-07-161-1/+1
* Make the assignment operator for SmallPtrSet return a reference, and fix a lo...Owen Anderson2007-07-091-1/+1
* work around an aparent gcc name resolution bug by Chris Lattner2007-07-091-2/+1
* implement operator= for smallptrsetChris Lattner2007-07-091-0/+14
* Fix PR1329.Jeff Cohen2007-04-141-0/+4
* add range version of insert()Chris Lattner2007-04-021-2/+7
* add iterator range version of ctor.Chris Lattner2007-03-041-0/+7
* Fix PR1234 by working around a compiler bug.Chris Lattner2007-03-021-2/+1
* do not let the table fill up with tombstones.Chris Lattner2007-02-071-0/+2
* provide a definition for uintptr_tChris Lattner2007-01-271-0/+1
* add some missing APIChris Lattner2007-01-271-0/+3
* implement SmallPtrSet::eraseChris Lattner2007-01-271-3/+10
* Fix a limitation of SmallPtrSet. Before it would assert if the smallsizeChris Lattner2007-01-271-2/+30
* add some comments on the algorithmChris Lattner2007-01-271-1/+20
* Add a new SmallSet ADT specialized for pointers.Chris Lattner2007-01-271-0/+165