mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-02 22:32:08 +00:00
Fix RecyclingAllocator::PrintStats to print the underlying allocator's stats.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182700 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
725e3d324b
commit
ba3500e4d2
@ -51,7 +51,10 @@ public:
|
||||
template<class SubClass>
|
||||
void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
|
||||
|
||||
void PrintStats() { Base.PrintStats(); }
|
||||
void PrintStats() {
|
||||
Allocator.PrintStats();
|
||||
Base.PrintStats();
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user