diff options
author | Juergen Ributzka <juergen@apple.com> | 2014-02-20 05:24:58 +0000 |
---|---|---|
committer | Juergen Ributzka <juergen@apple.com> | 2014-02-20 05:24:58 +0000 |
commit | a32575e4f65a4f86f55bfefe9144c70866980c10 (patch) | |
tree | 371381616925c1fadf3af9d4bf4cc06a4e429d49 /clang/lib/Frontend/CacheTokens.cpp | |
parent | b9e44d6bcf31125b638c8b2eb8aa021fb94b6ed7 (diff) | |
download | llvm-a32575e4f65a4f86f55bfefe9144c70866980c10.zip llvm-a32575e4f65a4f86f55bfefe9144c70866980c10.tar.gz llvm-a32575e4f65a4f86f55bfefe9144c70866980c10.tar.bz2 |
Reverting the virtual file system implementation, because it triggers an assertion
in our internal build bots.
This reverts commits 201618, 201635, 201636, 201639, 201685, 201691, and 201696.
llvm-svn: 201755
Diffstat (limited to 'clang/lib/Frontend/CacheTokens.cpp')
-rw-r--r-- | clang/lib/Frontend/CacheTokens.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Frontend/CacheTokens.cpp b/clang/lib/Frontend/CacheTokens.cpp index 5cb364e..0c30b04 100644 --- a/clang/lib/Frontend/CacheTokens.cpp +++ b/clang/lib/Frontend/CacheTokens.cpp @@ -516,8 +516,8 @@ public: ~StatListener() {} LookupResult getStat(const char *Path, FileData &Data, bool isFile, - vfs::File **F, vfs::FileSystem &FS) { - LookupResult Result = statChained(Path, Data, isFile, F, FS); + int *FileDescriptor) { + LookupResult Result = statChained(Path, Data, isFile, FileDescriptor); if (Result == CacheMissing) // Failed 'stat'. PM.insert(PTHEntryKeyVariant(Path), PTHEntry()); |