Skip to content

Commit 3ab64dd

Browse files
SC llvm teamSC llvm team
authored andcommitted
Merged main:2847020dbd9b8f932ee564651ec72ce15fa37d07 into amd-gfx:95a2ef3ad1f2
Local branch amd-gfx 95a2ef3 Merged main:f22b1da8791edd557ce34c87190e329df2e1c892 into amd-gfx:8ffbe2f0eec3 Remote branch main 2847020 [lldb][TypeSystemClang][NFC] Log failure to InitBuiltinTypes
2 parents 95a2ef3 + 2847020 commit 3ab64dd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,10 @@ void TypeSystemClang::CreateASTContext() {
697697
TargetInfo *target_info = getTargetInfo();
698698
if (target_info)
699699
m_ast_up->InitBuiltinTypes(*target_info);
700+
else if (auto *log = GetLog(LLDBLog::Expressions))
701+
LLDB_LOG(log,
702+
"Failed to initialize builtin ASTContext types for target '{0}'",
703+
m_target_triple);
700704

701705
GetASTMap().Insert(m_ast_up.get(), this);
702706

llvm/include/llvm/Config/llvm-config.h.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/* Indicate that this is LLVM compiled from the amd-gfx branch. */
1818
#define LLVM_HAVE_BRANCH_AMD_GFX
19-
#define LLVM_MAIN_REVISION 509554
19+
#define LLVM_MAIN_REVISION 509555
2020

2121
/* Define if LLVM_ENABLE_DUMP is enabled */
2222
#cmakedefine LLVM_ENABLE_DUMP

0 commit comments

Comments
 (0)