[clang] Make PCH's respect any VFS specified. (PR #106577)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 29 09:00:13 PDT 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 175aa864f33786f3a6a4ee7381cbcafd0758501a e8e06cef736577eb098de57f8dfae201c945d2af --extensions c,cpp -- clang/test/PCH/verify_no_timestamp.c clang/test/VFS/remap-to-fake.c clang/lib/Frontend/FrontendActions.cpp clang/lib/Serialization/ASTWriter.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/Serialization/ASTWriter.cpp b/clang/lib/Serialization/ASTWriter.cpp
index 94cc1751cd..55cbc46e1c 100644
--- a/clang/lib/Serialization/ASTWriter.cpp
+++ b/clang/lib/Serialization/ASTWriter.cpp
@@ -4775,7 +4775,8 @@ bool ASTWriter::PreparePathForOutput(SmallVectorImpl<char> &Path) {
// If we are generating a normal PCH (EG. not a C++ module).
if (!WritingModule) {
// Use the vfs overlay if it exists to translate paths.
- auto& FileSys = Context->getSourceManager().getFileManager().getVirtualFileSystem();
+ auto &FileSys =
+ Context->getSourceManager().getFileManager().getVirtualFileSystem();
if (auto *RFS = dyn_cast<llvm::vfs::RedirectingFileSystem>(&FileSys)) {
if (auto Result = RFS->lookupPath(PathStr)) {
if (std::optional<StringRef> Redirect = Result->getExternalRedirect()) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/106577
More information about the cfe-commits
mailing list