Skip to content

Commit 1f257ac

Browse files
committed
Speculatively fix the LLDB build bots from 6c75ab5
It looks like some renames got missed.
1 parent f0cda71 commit 1f257ac

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

clang/lib/Sema/SemaTemplateDeduction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2144,7 +2144,7 @@ static Sema::TemplateDeductionResult DeduceTemplateArgumentsByTypeMatch(
21442144

21452145
return Sema::TDK_NonDeducedMismatch;
21462146
}
2147-
case Type::DependentExtInt: {
2147+
case Type::DependentBitInt: {
21482148
const auto *IP = P->castAs<DependentBitIntType>();
21492149

21502150
if (const auto *IA = A->getAs<BitIntType>()) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4088,8 +4088,8 @@ TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) {
40884088
return lldb::eTypeClassVector;
40894089
case clang::Type::Builtin:
40904090
// Ext-Int is just an integer type.
4091-
case clang::Type::ExtInt:
4092-
case clang::Type::DependentExtInt:
4091+
case clang::Type::BitInt:
4092+
case clang::Type::DependentBitInt:
40934093
return lldb::eTypeClassBuiltin;
40944094
case clang::Type::ObjCObjectPointer:
40954095
return lldb::eTypeClassObjCObjectPointer;
@@ -4744,8 +4744,8 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
47444744
// TODO: Set this to more than one???
47454745
break;
47464746

4747-
case clang::Type::ExtInt:
4748-
case clang::Type::DependentExtInt:
4747+
case clang::Type::BitInt:
4748+
case clang::Type::DependentBitInt:
47494749
return qual_type->isUnsignedIntegerType() ? lldb::eEncodingUint
47504750
: lldb::eEncodingSint;
47514751

@@ -5124,8 +5124,8 @@ lldb::Format TypeSystemClang::GetFormat(lldb::opaque_compiler_type_t type) {
51245124
case clang::Type::Vector:
51255125
break;
51265126

5127-
case clang::Type::ExtInt:
5128-
case clang::Type::DependentExtInt:
5127+
case clang::Type::BitInt:
5128+
case clang::Type::DependentBitInt:
51295129
return qual_type->isUnsignedIntegerType() ? lldb::eFormatUnsigned
51305130
: lldb::eFormatDecimal;
51315131

0 commit comments

Comments
 (0)