We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 509b83f commit 8d72964Copy full SHA for 8d72964
lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
@@ -1675,7 +1675,7 @@ void SymbolFileNativePDB::CacheFunctionNames() {
1675
llvm::cantFail(SymbolDeserializer::deserializeAs<ProcSym>(*iter));
1676
if ((proc.Flags & ProcSymFlags::IsUnreachable) != ProcSymFlags::None)
1677
continue;
1678
- if (proc.Name.empty() || proc.FunctionType.isNoneType())
+ if (proc.Name.empty() || proc.FunctionType.isSimple())
1679
1680
1681
// The function/procedure symbol only contains the demangled name.
0 commit comments