Skip to content

Commit a0f1a1c

Browse files
author
Matej Košík
committed
[lldb] Fix the TypeSystemClang::GetBasicTypeEnumeration wrt. 128-bit integer types
1 parent b178821 commit a0f1a1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -849,8 +849,8 @@ lldb::BasicType TypeSystemClang::GetBasicTypeEnumeration(llvm::StringRef name) {
849849
{"unsigned long long int", eBasicTypeUnsignedLongLong},
850850

851851
// "int128"
852-
{"__int128_t", eBasicTypeInt128},
853-
{"__uint128_t", eBasicTypeUnsignedInt128},
852+
{"__int128", eBasicTypeInt128},
853+
{"unsigned __int128", eBasicTypeUnsignedInt128},
854854

855855
// "bool"
856856
{"bool", eBasicTypeBool},

0 commit comments

Comments
 (0)