1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

DIE: Document some learnings about why the world isn't perfect.

llvm-svn: 207458
This commit is contained in:
David Blaikie 2014-04-28 22:41:39 +00:00
parent d5d88c38e4
commit f9b06eb99e

View File

@ -124,6 +124,12 @@ protected:
/// Children DIEs.
///
// This can't be a vector<DIE> because pointer validity is requirent for the
// Parent pointer and DIEEntry.
// It can't be a list<DIE> because some clients need pointer validity before
// the object has been added to any child list
// (eg: DwarfUnit::constructVariableDIE). These aren't insurmountable, but may
// be more convoluted than beneficial.
std::vector<std::unique_ptr<DIE>> Children;
DIE *Parent;