search for: trienod

Displaying 1 result from an estimated 1 matches for "trienod".

Did you mean: triend
2014 Nov 26
3
[LLVMdev] [lld] memory leaks.
...ileArchive) returns a pointer without owner. Maybe a way to fix that issue is to tell that the pointer returned by find() must never be freed, and make sure the FileArchive (and other classes implementing find()) managed the memory of the returned file objects. - One other leak is Mach-O specific. TrieNode (in MachONormalizedFileBinaryWriter) uses a SmallVector to store its children. But TrieNodes are allocated using a llvm bumpPtr allocator, and so are never ‘deleted'. While the memory used by the TrieNode is properly released when the allocator is destroyed, the SmallVector destructor is never...