1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Deallocate type units when destroying a DWARFContext.

llvm-svn: 191637
This commit is contained in:
Benjamin Kramer 2013-09-29 11:24:02 +00:00
parent c03ffd11a9
commit 9a4c18a22b

View File

@ -25,6 +25,7 @@ typedef DWARFDebugLine::LineTable DWARFLineTable;
DWARFContext::~DWARFContext() {
DeleteContainerPointers(CUs);
DeleteContainerPointers(TUs);
DeleteContainerPointers(DWOCUs);
}