Skip to content

Commit f5953f4

Browse files
committed
Fix lldb build failure caused by 39adc8f
We changed the name of one of the types, which is consumed by LLDB. My patch local build + CI didn't catch it, but a build bot did! This commit fixes it by updating the name in LLDB.
1 parent f9a0b46 commit f5953f4

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
@@ -4861,7 +4861,7 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
48614861
case clang::BuiltinType::Kind::OCLQueue:
48624862
case clang::BuiltinType::Kind::OCLReserveID:
48634863
case clang::BuiltinType::Kind::OCLSampler:
4864-
case clang::BuiltinType::Kind::OMPArraySection:
4864+
case clang::BuiltinType::Kind::ArraySection:
48654865
case clang::BuiltinType::Kind::OMPArrayShaping:
48664866
case clang::BuiltinType::Kind::OMPIterator:
48674867
case clang::BuiltinType::Kind::Overload:
@@ -6013,7 +6013,7 @@ uint32_t TypeSystemClang::GetNumPointeeChildren(clang::QualType type) {
60136013
case clang::BuiltinType::ARCUnbridgedCast:
60146014
case clang::BuiltinType::PseudoObject:
60156015
case clang::BuiltinType::BuiltinFn:
6016-
case clang::BuiltinType::OMPArraySection:
6016+
case clang::BuiltinType::ArraySection:
60176017
return 1;
60186018
default:
60196019
return 0;

0 commit comments

Comments
 (0)