Revert r359520

llvm-svn: 359544
This commit is contained in:
David Bolvansky 2019-04-30 10:09:28 +00:00
parent 0ed4619679
commit 59b6889238
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ void FunctionDumper::dump(const PDBSymbolTypeFunctionArg &Symbol) {
// through to the real thing and dump it.
uint32_t TypeId = Symbol.getTypeId();
auto Type = Symbol.getSession().getSymbolById(TypeId);
if (!Type)
if (Type)
Type->dump(*this);
else
Printer << "<unknown-type>";