]> granicus.if.org Git - clang/commitdiff
Fix build bot after r340598.
authorEric Liu <ioeric@google.com>
Fri, 24 Aug 2018 09:53:44 +0000 (09:53 +0000)
committerEric Liu <ioeric@google.com>
Fri, 24 Aug 2018 09:53:44 +0000 (09:53 +0000)
Revert to the original behavior: only calculate real file path when
file is opened and avoid using InterndPath for real path calculation.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@340602 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Basic/FileManager.cpp

index 060d3a687a9c8a2f40d51fda7ca7b4b47b4e8ec3..a45a8f239acda7ddba0baab604e8718110e8bd51 100644 (file)
@@ -316,14 +316,18 @@ const FileEntry *FileManager::getFile(StringRef Filename, bool openFile,
   UFE.File = std::move(F);
   UFE.IsValid = true;
 
-  llvm::SmallString<128> AbsPath(InterndFileName);
-  // This is not the same as `VFS::getRealPath()`, which resolves symlinks but
-  // can be very expensive on real file systems.
-  // FIXME: the semantic of RealPathName is unclear, and the name might be
-  // misleading. We need to clean up the interface here.
-  makeAbsolutePath(AbsPath);
-  llvm::sys::path::remove_dots(AbsPath, /*remove_dot_dot=*/true);
-  UFE.RealPathName = AbsPath.str();
+  if (UFE.File) {
+    if (auto PathName = UFE.File->getName()) {
+      llvm::SmallString<128> AbsPath(*PathName);
+      // This is not the same as `VFS::getRealPath()`, which resolves symlinks
+      // but can be very expensive on real file systems.
+      // FIXME: the semantic of RealPathName is unclear, and the name might be
+      // misleading. We need to clean up the interface here.
+      makeAbsolutePath(AbsPath);
+      llvm::sys::path::remove_dots(AbsPath, /*remove_dot_dot=*/true);
+      UFE.RealPathName = AbsPath.str();
+    }
+  }
   return &UFE;
 }