summaryrefslogtreecommitdiffstats
path: root/lib/Lex/PTHLexer.cpp
diff options
context:
space:
mode:
authorBen Langmuir <blangmuir@apple.com>2014-02-27 23:27:54 +0000
committerBen Langmuir <blangmuir@apple.com>2014-02-27 23:27:54 +0000
commit2b1bc151cb3d274c5bd4bcae27986068f9e88942 (patch)
treec2177f1de82abc4e3a8588c80da701a63b456ad0 /lib/Lex/PTHLexer.cpp
parent9e229d2b0b2161ac4dd0ae832061915afd721b1d (diff)
Honour 'use-external-names' in FileManager
Pass through the externally-visible names that we got from the VFS down to FileManager, and test that this is the name showing up in __FILE__, diagnostics, and debug information. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202442 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/PTHLexer.cpp')
-rw-r--r--lib/Lex/PTHLexer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Lex/PTHLexer.cpp b/lib/Lex/PTHLexer.cpp
index cdc5d7e338..dd8363df9c 100644
--- a/lib/Lex/PTHLexer.cpp
+++ b/lib/Lex/PTHLexer.cpp
@@ -688,6 +688,7 @@ public:
if (!D.HasData)
return CacheMissing;
+ Data.Name = Path;
Data.Size = D.Size;
Data.ModTime = D.ModTime;
Data.UniqueID = D.UniqueID;