Removed a bad assertion:
authorGreg Clayton <gclayton@apple.com>
Thu, 11 Feb 2016 23:36:57 +0000 (23:36 +0000)
committerGreg Clayton <gclayton@apple.com>
Thu, 11 Feb 2016 23:36:57 +0000 (23:36 +0000)
commit565aaf61942aa75a709e72734d97cf23b0b46e97
tree5ddf5b78830e19bd5fec659f5798fc243261a80a
parent21156e80ba73af41d67b465819121b5da2d1ed38
Removed a bad assertion:

assert(((SymbolFileDWARF*)m_ast.GetSymbolFile())->UserIDMatches(die.GetDIERef().GetUID()) &&
       "Adding incorrect type to forward declaration map");

The problem is that "m_ast.GetSymbolFile()" can return a SymbolFileDWARFDebugMap. The code is doing the right thing if the assertion is ignored.

<rdar://problem/24437972>

llvm-svn: 260618
lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp