Change a recently added assert into lldbassert

llvm-svn: 265124
This commit is contained in:
Pavel Labath 2016-04-01 09:57:30 +00:00
parent dc78bc8209
commit a5d09f64a1
1 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
#include "lldb/Core/Section.h"
#include "lldb/Expression/DWARFExpression.h"
#include "lldb/Symbol/ObjectFile.h"
#include "lldb/Utility/LLDBAssert.h"
#include "DWARFCompileUnit.h"
#include "DWARFDebugInfo.h"
@ -133,6 +134,6 @@ SymbolFileDWARFDwo::GetTypeSystemForLanguage(LanguageType language)
DWARFDIE
SymbolFileDWARFDwo::GetDIE(const DIERef &die_ref)
{
assert(m_base_dwarf_cu->GetOffset() == die_ref.cu_offset);
lldbassert(m_base_dwarf_cu->GetOffset() == die_ref.cu_offset);
return DebugInfo()->GetDIEForDIEOffset(die_ref.die_offset);
}