Skip to content

Commit 67a8b88

Browse files
committed
lldb: Fixes for AMDGPU builtin added in ad59921
1 parent 1c9a81b commit 67a8b88

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5059,6 +5059,11 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
50595059

50605060
case clang::BuiltinType::UnresolvedTemplate:
50615061
break;
5062+
5063+
// AMD GPU builtin types.
5064+
#define AMDGPU_TYPE(Name, Id, SingletonId) case clang::BuiltinType::Id:
5065+
#include "clang/Basic/AMDGPUTypes.def"
5066+
break;
50625067
}
50635068
break;
50645069
// All pointer types are represented as unsigned integer encodings. We may

0 commit comments

Comments
 (0)