[Lldb-commits] [lldb] [lldb] Fix TypeSystemClang::GetBasicTypeEnumeration for 128-bit int types (PR #162278)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 9 11:20:28 PDT 2025


================
@@ -849,8 +849,8 @@ lldb::BasicType TypeSystemClang::GetBasicTypeEnumeration(llvm::StringRef name) {
       {"unsigned long long int", eBasicTypeUnsignedLongLong},
 
       // "int128"
-      {"__int128_t", eBasicTypeInt128},
-      {"__uint128_t", eBasicTypeUnsignedInt128},
+      {"__int128", eBasicTypeInt128},
+      {"unsigned __int128", eBasicTypeUnsignedInt128},
 
----------------
clayborg wrote:

Do we want to leave in the old defines in to make sure it doesn't break anyone? So just add the new entries and leave the old ones?

https://github.com/llvm/llvm-project/pull/162278


More information about the lldb-commits mailing list