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 /clang/lib/Interpreter/Interpreter.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 'clang/lib/Interpreter/Interpreter.cpp')
-rw-r--r-- | clang/lib/Interpreter/Interpreter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Interpreter/Interpreter.cpp b/clang/lib/Interpreter/Interpreter.cpp index b4882ab..7209a332 100644 --- a/clang/lib/Interpreter/Interpreter.cpp +++ b/clang/lib/Interpreter/Interpreter.cpp @@ -26,7 +26,7 @@ #include "clang/Basic/TargetInfo.h" #include "clang/CodeGen/CodeGenAction.h" #include "clang/CodeGen/ModuleBuilder.h" -#include "clang/CodeGen/ObjectFilePCHContainerOperations.h" +#include "clang/CodeGen/ObjectFilePCHContainerWriter.h" #include "clang/Driver/Compilation.h" #include "clang/Driver/Driver.h" #include "clang/Driver/Job.h" @@ -38,6 +38,7 @@ #include "clang/Interpreter/Value.h" #include "clang/Lex/PreprocessorOptions.h" #include "clang/Sema/Lookup.h" +#include "clang/Serialization/ObjectFilePCHContainerReader.h" #include "llvm/ExecutionEngine/JITSymbol.h" #include "llvm/ExecutionEngine/Orc/LLJIT.h" #include "llvm/IR/Module.h" |