mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
BumpPtrAllocator::Reset() doesn't need to allocate anything. (Thanks, Jakob)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -70,8 +70,8 @@ void BumpPtrAllocator::DeallocateSlabs(MemSlab *Slab) {
|
|||||||
/// Reset - Deallocate all but the current slab and reset the current pointer
|
/// Reset - Deallocate all but the current slab and reset the current pointer
|
||||||
/// to the beginning of it, freeing all memory allocated so far.
|
/// to the beginning of it, freeing all memory allocated so far.
|
||||||
void BumpPtrAllocator::Reset() {
|
void BumpPtrAllocator::Reset() {
|
||||||
if (!CurSlab) // Start a new slab if we didn't allocate one already.
|
if (!CurSlab)
|
||||||
StartNewSlab();
|
return;
|
||||||
DeallocateSlabs(CurSlab->NextPtr);
|
DeallocateSlabs(CurSlab->NextPtr);
|
||||||
CurSlab->NextPtr = 0;
|
CurSlab->NextPtr = 0;
|
||||||
CurPtr = (char*)(CurSlab + 1);
|
CurPtr = (char*)(CurSlab + 1);
|
||||||
|
Reference in New Issue
Block a user