[clang] [clang][deps] Only bypass scanning VFS for the module cache (PR #88800)

Alexandre Ganea via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 16 09:33:37 PDT 2024


================
@@ -362,7 +357,7 @@ DependencyScanningWorkerFilesystem::openFileForRead(const Twine &Path) {
   SmallString<256> OwnedFilename;
   StringRef Filename = Path.toStringRef(OwnedFilename);
 
-  if (Filename.ends_with(".pcm"))
+  if (shouldBypass(Filename))
----------------
aganea wrote:

Are the .pcm files to be generated in the modules cache path?

https://github.com/llvm/llvm-project/pull/88800


More information about the cfe-commits mailing list