Fix buildbot compile error for https://reviews.llvm.org/D105160.
authorGreg Clayton <gclayton@fb.com>
Wed, 30 Jun 2021 01:03:25 +0000 (18:03 -0700)
committerGreg Clayton <gclayton@fb.com>
Wed, 30 Jun 2021 01:03:25 +0000 (18:03 -0700)
lldb/source/Symbol/Symtab.cpp

index d859d8e..89e75c2 100644 (file)
@@ -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);