Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | After some discussion with djg, teach SmallVector to grow from a zero | John McCall | 2010-09-02 | 1 | -1/+1 |
| | | | | | | | capacity and remove the workaround in SmallVector<T,0>. There are some theoretical benefits to a N->2N+1 growth policy anyway. llvm-svn: 112870 | ||||
* | Use realloc instead of malloc+memcpy when growing a POD SmallVector. A smart | Benjamin Kramer | 2010-06-08 | 1 | -9/+12 |
| | | | | | | | realloc implementation can try to expand the allocated memory block in-place, avoiding the copy. llvm-svn: 105605 | ||||
* | now that libsystem no longer uses SmallVector, we can move | Chris Lattner | 2009-12-16 | 1 | -0/+37 |
SmallVectorBase::grow_pod out of line, finally satisfying PR3758. llvm-svn: 91529 |