[Lldb-commits] [lldb] [lldb] Fix TypeSystemClang::GetBasicTypeEnumeration for 128-bit int types (PR #162278)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 8 09:24:26 PDT 2025
================
@@ -159,9 +159,9 @@ TEST_F(TestTypeSystemClang, TestGetBasicTypeFromName) {
GetBasicQualType("unsigned long long"));
EXPECT_EQ(GetBasicQualType(eBasicTypeUnsignedLongLong),
GetBasicQualType("unsigned long long int"));
- EXPECT_EQ(GetBasicQualType(eBasicTypeInt128), GetBasicQualType("__int128_t"));
+ EXPECT_EQ(GetBasicQualType(eBasicTypeInt128), GetBasicQualType("__int128"));
EXPECT_EQ(GetBasicQualType(eBasicTypeUnsignedInt128),
- GetBasicQualType("__uint128_t"));
+ GetBasicQualType("unsigned __uint128"));
----------------
Michael137 wrote:
```suggestion
GetBasicQualType("unsigned __int128"));
```
Hence the PR CI test failure
https://github.com/llvm/llvm-project/pull/162278
More information about the lldb-commits
mailing list