================
@@ -1448,6 +1448,38 @@ class ASTReader : public ExternalPreprocessorSource,
     const StringRef &operator*() && = delete;
   };
 
+public:
+  /// Returns where a loaded module keeps the input file with path \p Path and
+  /// size \p Size, or an invalid \c FID if no loaded module has the file.
+  serialization::InputFileLoc getLoadedFileLoc(StringRef Path, off_t Size);
+
+private:
+  struct LoadedInputFile {
+    off_t Size;
+    ModuleFile *F;
+    unsigned InputID;
----------------
ayokunle321 wrote:

Added

https://github.com/llvm/llvm-project/pull/209795
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to