mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-21 23:25:07 +00:00
Adapt llvmorg-12-init-17739-gf4d02fbe418d: change CanReuse
This commit is contained in:
parent
aca02d209b
commit
4cd308d7fd
@ -350,14 +350,19 @@ void buildPreamble(Session &session, CompilerInvocation &ci,
|
|||||||
std::string content = session.wfiles->getContent(task.path);
|
std::string content = session.wfiles->getContent(task.path);
|
||||||
std::unique_ptr<llvm::MemoryBuffer> buf =
|
std::unique_ptr<llvm::MemoryBuffer> buf =
|
||||||
llvm::MemoryBuffer::getMemBuffer(content);
|
llvm::MemoryBuffer::getMemBuffer(content);
|
||||||
#if LLVM_VERSION_MAJOR >= 12 // llvmorg-12-init-11522-g4c55c3b66de
|
#if LLVM_VERSION_MAJOR >= 12
|
||||||
|
// llvmorg-12-init-11522-g4c55c3b66de
|
||||||
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), *buf, 0);
|
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), *buf, 0);
|
||||||
|
// llvmorg-12-init-17739-gf4d02fbe418d
|
||||||
|
if (!task.from_diag && oldP &&
|
||||||
|
oldP->preamble.CanReuse(ci, *buf, bounds, *fs))
|
||||||
|
return;
|
||||||
#else
|
#else
|
||||||
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), buf.get(), 0);
|
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), buf.get(), 0);
|
||||||
#endif
|
|
||||||
if (!task.from_diag && oldP &&
|
if (!task.from_diag && oldP &&
|
||||||
oldP->preamble.CanReuse(ci, buf.get(), bounds, fs.get()))
|
oldP->preamble.CanReuse(ci, buf.get(), bounds, fs.get()))
|
||||||
return;
|
return;
|
||||||
|
#endif
|
||||||
// -Werror makes warnings issued as errors, which stops parsing
|
// -Werror makes warnings issued as errors, which stops parsing
|
||||||
// prematurely because of -ferror-limit=. This also works around the issue
|
// prematurely because of -ferror-limit=. This also works around the issue
|
||||||
// of -Werror + -Wunused-parameter in interaction with SkipFunctionBodies.
|
// of -Werror + -Wunused-parameter in interaction with SkipFunctionBodies.
|
||||||
|
Loading…
Reference in New Issue
Block a user