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/unittests/Basic/FileManagerTest.cpp | |
parent | b9e44d6bcf31125b638c8b2eb8aa021fb94b6ed7 (diff) | |
download | bcm5719-llvm-a32575e4f65a4f86f55bfefe9144c70866980c10.tar.gz bcm5719-llvm-a32575e4f65a4f86f55bfefe9144c70866980c10.zip |
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/unittests/Basic/FileManagerTest.cpp')
-rw-r--r-- | clang/unittests/Basic/FileManagerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Basic/FileManagerTest.cpp b/clang/unittests/Basic/FileManagerTest.cpp index 5b35e687350..f8ce50d531e 100644 --- a/clang/unittests/Basic/FileManagerTest.cpp +++ b/clang/unittests/Basic/FileManagerTest.cpp @@ -48,7 +48,7 @@ public: // Implement FileSystemStatCache::getStat(). virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile, - vfs::File **F, vfs::FileSystem &FS) { + int *FileDescriptor) { if (StatCalls.count(Path) != 0) { Data = StatCalls[Path]; return CacheExists; |