diff options
author | Chuanqi Xu <yedeng.yd@linux.alibaba.com> | 2024-07-23 23:55:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 23:55:31 +0800 |
commit | d64eccf4335e99360132b724d060d704892fbb02 (patch) | |
tree | a1ea759f651d6507648d44bd6af199da6b098fed /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | a138d754cc1833e624aa89d4ac9fdb2086259e9a (diff) | |
download | llvm-d64eccf4335e99360132b724d060d704892fbb02.zip llvm-d64eccf4335e99360132b724d060d704892fbb02.tar.gz llvm-d64eccf4335e99360132b724d060d704892fbb02.tar.bz2 |
[clang] Split ObjectFilePCHContainerReader from ObjectFilePCHContainerWriter (#99599)
Close https://github.com/llvm/llvm-project/issues/99479
See https://github.com/llvm/llvm-project/issues/99479 for details
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index d594330..cc381a2 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -59,10 +59,10 @@ #include "lldb/lldb-enumerations.h" #include "lldb/lldb-private-enumerations.h" -#include "clang/CodeGen/ObjectFilePCHContainerOperations.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/CompilerInvocation.h" #include "clang/Frontend/FrontendActions.h" +#include "clang/Serialization/ObjectFilePCHContainerReader.h" #include "llvm/ADT/ScopeExit.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/FileSystem.h" |