[Lldb-commits] [lldb] 323bcbd - Fix buildbot failure after https://reviews.llvm.org/D104488.

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Mon Jun 28 18:12:27 PDT 2021


Author: Greg Clayton
Date: 2021-06-28T18:12:05-07:00
New Revision: 323bcbdba0e6ffa206a4575ce90e5056e8e77c09

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

LOG: Fix buildbot failure after https://reviews.llvm.org/D104488.

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