Assert that DIEEntries are constructed with non-null DIEs

This just brings a crash a little further forward from DWARF emission to
DIE construction to make errors easier to diagnose.

llvm-svn: 181748
This commit is contained in:
David Blaikie 2013-05-14 00:35:19 +00:00
parent 11ecabf4eb
commit 7b770c6aed
1 changed files with 3 additions and 1 deletions

View File

@ -325,7 +325,9 @@ namespace llvm {
class DIEEntry : public DIEValue {
DIE *const Entry;
public:
explicit DIEEntry(DIE *E) : DIEValue(isEntry), Entry(E) {}
explicit DIEEntry(DIE *E) : DIEValue(isEntry), Entry(E) {
assert(E && "Cannot construct a DIEEntry with a null DIE");
}
DIE *getEntry() const { return Entry; }