diff options
author | Zhanyong Wan <wan@google.com> | 2011-02-11 18:44:49 +0000 |
---|---|---|
committer | Zhanyong Wan <wan@google.com> | 2011-02-11 18:44:49 +0000 |
commit | e1dd3e2c3109eb894dcf90bf1d0505a2991810e4 (patch) | |
tree | 82ce6ede7e33c09a384a4b379073b41a5acfde83 /clang/unittests/Makefile | |
parent | 84796221521f3ae7533b7ea8888a96bb357ba6e0 (diff) | |
download | bcm5719-llvm-e1dd3e2c3109eb894dcf90bf1d0505a2991810e4.tar.gz bcm5719-llvm-e1dd3e2c3109eb894dcf90bf1d0505a2991810e4.zip |
Improves Clang's virtual file handling.
This patch contains:
- making some of the existing comments more accurate in the presence
of virtual files/directories.
- renaming some private data members of FileManager to match their roles better.
- creating 'DirectorEntry's for the parent directories of virtual
files, such that we can tell whether two virtual files are from the
same directory. This is useful for injecting virtual files whose
directories don't exist in the real file system.
- minor clean-ups and adding comments for class
FileManager::UniqueDirContainer and FileManager::UniqueFileContainer.
- adding statistics on virtual files to FileManager::PrintStats().
- adding unit tests to verify the existing and new behavior of FileManager.
llvm-svn: 125384
Diffstat (limited to 'clang/unittests/Makefile')
-rw-r--r-- | clang/unittests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Makefile b/clang/unittests/Makefile index 685e397864a..e8b4d55f3de 100644 --- a/clang/unittests/Makefile +++ b/clang/unittests/Makefile @@ -14,7 +14,7 @@ ifndef CLANG_LEVEL IS_UNITTEST_LEVEL := 1 CLANG_LEVEL := .. -PARALLEL_DIRS = Frontend +PARALLEL_DIRS = FileManager Frontend endif # CLANG_LEVEL |