[Lldb-commits] [lldb] ae60869 - Minor fix to 3222f95ea8c4de153f908c138cdec178e22acaf4

Zequan Wu via lldb-commits lldb-commits at lists.llvm.org
Mon Jun 13 12:07:08 PDT 2022


Author: Zequan Wu
Date: 2022-06-13T12:06:07-07:00
New Revision: ae60869908db6e8f45b51bc35d983706e8a296ae

URL: https://github.com/llvm/llvm-project/commit/ae60869908db6e8f45b51bc35d983706e8a296ae
DIFF: https://github.com/llvm/llvm-project/commit/ae60869908db6e8f45b51bc35d983706e8a296ae.diff

LOG: Minor fix to 3222f95ea8c4de153f908c138cdec178e22acaf4

Added: 
    

Modified: 
    lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp b/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
index 5c98ac38de6f..84e535f2e0bc 100644
--- a/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
+++ b/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
@@ -1052,7 +1052,7 @@ uint32_t SymbolFileNativePDB::ResolveSymbolContext(
     for (uint32_t cu_idx = 0, num_cus = GetNumCompileUnits(); cu_idx < num_cus;
          ++cu_idx) {
       CompileUnit *cu = ParseCompileUnitAtIndex(cu_idx).get();
-      if (!cu && cu->GetNumFunctions() != 0)
+      if (!cu && cu->GetNumFunctions() == 0)
         continue;
 
       bool file_spec_matches_cu_file_spec = FileSpec::Match(


        


More information about the lldb-commits mailing list