[Lldb-commits] [lldb] 43f6dad - Fix buildbot compile error for https://reviews.llvm.org/D105160.

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 29 18:04:05 PDT 2021


Author: Greg Clayton
Date: 2021-06-29T18:03:25-07:00
New Revision: 43f6dad2344247976d5777f56a1fc29e39c6c717

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

LOG: Fix buildbot compile error for https://reviews.llvm.org/D105160.

Added: 
    

Modified: 
    lldb/source/Symbol/Symtab.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Symbol/Symtab.cpp b/lldb/source/Symbol/Symtab.cpp
index d859d8e25129..89e75c28cb9b 100644
--- a/lldb/source/Symbol/Symtab.cpp
+++ b/lldb/source/Symbol/Symtab.cpp
@@ -645,7 +645,7 @@ uint32_t Symtab::GetNameIndexes(ConstString symbol_name,
     return 0; // Not a synthetic symbol name
 
   // Extract the user ID from the symbol name
-  user_id_t uid = 0;
+  unsigned long long uid = 0;
   if (getAsUnsignedInteger(name, /*Radix=*/10, uid))
     return 0; // Failed to extract the user ID as an integer
   Symbol *symbol = FindSymbolByID(uid);


        


More information about the lldb-commits mailing list