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); _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits