commit | 1fe49e68baf567a689312eaf5973e017b8d2fdd5 | [log] [tgz] |
---|---|---|
author | Benjamin Kramer <benny.kra@googlemail.com> | Sun Sep 29 11:24:02 2013 +0000 |
committer | Benjamin Kramer <benny.kra@googlemail.com> | Sun Sep 29 11:24:02 2013 +0000 |
tree | 193a4dbafd90da5a4131d073499d465fce1f042a | |
parent | fd40d514ec7e95fe4a59a7a467c887b026364ff2 [diff] [blame] |
Deallocate type units when destroying a DWARFContext. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191637 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/DebugInfo/DWARFContext.cpp b/lib/DebugInfo/DWARFContext.cpp index f8234e9..df4633d 100644 --- a/lib/DebugInfo/DWARFContext.cpp +++ b/lib/DebugInfo/DWARFContext.cpp
@@ -25,6 +25,7 @@ DWARFContext::~DWARFContext() { DeleteContainerPointers(CUs); + DeleteContainerPointers(TUs); DeleteContainerPointers(DWOCUs); }