diff options
author | Nico Weber <thakis@chromium.org> | 2021-04-21 10:00:30 -0400 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2021-04-21 10:19:01 -0400 |
commit | ba7a92c01e86b5048a93abe7c26c25b90ea9040a (patch) | |
tree | 4628efebcf9adf2bc38da4cb55b1db33cb986cbf /llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp | |
parent | 2f69975683f5b6ea7df79f335f96b889a4bddecd (diff) | |
download | llvm-ba7a92c01e86b5048a93abe7c26c25b90ea9040a.zip llvm-ba7a92c01e86b5048a93abe7c26c25b90ea9040a.tar.gz llvm-ba7a92c01e86b5048a93abe7c26c25b90ea9040a.tar.bz2 |
[Support] Don't include VirtualFileSystem.h in CommandLine.h
CommandLine.h is indirectly included in ~50% of TUs when building
clang, and VirtualFileSystem.h is large.
(Already remarked by jhenderson on D70769.)
No behavior change.
Differential Revision: https://reviews.llvm.org/D100957
Diffstat (limited to 'llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp')
-rw-r--r-- | llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp b/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp index 942f8e7..3f1249a 100644 --- a/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp +++ b/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp @@ -20,10 +20,10 @@ #include "llvm/ADT/StringRef.h" #include "llvm/ADT/Triple.h" #include "llvm/Object/Binary.h" +#include "llvm/Object/COFF.h" #include "llvm/Object/Error.h" #include "llvm/Object/MachOUniversal.h" #include "llvm/Object/ObjectFile.h" -#include "llvm/Object/COFF.h" #include "llvm/ProfileData/InstrProf.h" #include "llvm/Support/Casting.h" #include "llvm/Support/Compression.h" @@ -33,6 +33,7 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/LEB128.h" #include "llvm/Support/MathExtras.h" +#include "llvm/Support/Path.h" #include "llvm/Support/raw_ostream.h" #include <vector> |