diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:23:27 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-14 11:23:27 +0000 |
commit | d9903888d9151325c8bdaa6c9c44bc0cb0980ff6 (patch) | |
tree | faefd8a7fdf75c9ea195ce7e35876a300f768f57 /llvm/tools/llvm-cov | |
parent | e189d46512a710833f088bdd787458aecff71d21 (diff) | |
download | bcm5719-llvm-d9903888d9151325c8bdaa6c9c44bc0cb0980ff6.tar.gz bcm5719-llvm-d9903888d9151325c8bdaa6c9c44bc0cb0980ff6.zip |
[cleanup] Re-sort all the #include lines in LLVM using
utils/sort_includes.py.
I clearly haven't done this in a while, so more changed than usual. This
even uncovered a missing include from the InstrProf library that I've
added. No functionality changed here, just mechanical cleanup of the
include order.
llvm-svn: 225974
Diffstat (limited to 'llvm/tools/llvm-cov')
-rw-r--r-- | llvm/tools/llvm-cov/CodeCoverage.cpp | 14 | ||||
-rw-r--r-- | llvm/tools/llvm-cov/CoverageFilters.h | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-cov/CoverageReport.cpp | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-cov/CoverageReport.h | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-cov/TestingSupport.cpp | 8 | ||||
-rw-r--r-- | llvm/tools/llvm-cov/llvm-cov.cpp | 2 |
6 files changed, 15 insertions, 15 deletions
diff --git a/llvm/tools/llvm-cov/CodeCoverage.cpp b/llvm/tools/llvm-cov/CodeCoverage.cpp index 515d2bdc8e6..7cee4d4b3f2 100644 --- a/llvm/tools/llvm-cov/CodeCoverage.cpp +++ b/llvm/tools/llvm-cov/CodeCoverage.cpp @@ -14,23 +14,23 @@ //===----------------------------------------------------------------------===// #include "RenderingSupport.h" -#include "CoverageViewOptions.h" #include "CoverageFilters.h" -#include "SourceCoverageView.h" -#include "CoverageSummary.h" #include "CoverageReport.h" -#include "llvm/ADT/StringRef.h" +#include "CoverageSummary.h" +#include "CoverageViewOptions.h" +#include "SourceCoverageView.h" #include "llvm/ADT/SmallString.h" -#include "llvm/ProfileData/InstrProfReader.h" +#include "llvm/ADT/StringRef.h" #include "llvm/ProfileData/CoverageMapping.h" #include "llvm/ProfileData/CoverageMappingReader.h" +#include "llvm/ProfileData/InstrProfReader.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FileSystem.h" -#include "llvm/Support/ManagedStatic.h" #include "llvm/Support/Format.h" +#include "llvm/Support/ManagedStatic.h" #include "llvm/Support/Path.h" -#include "llvm/Support/Signals.h" #include "llvm/Support/PrettyStackTrace.h" +#include "llvm/Support/Signals.h" #include <functional> #include <system_error> diff --git a/llvm/tools/llvm-cov/CoverageFilters.h b/llvm/tools/llvm-cov/CoverageFilters.h index e543005c6bc..dc5dc98807b 100644 --- a/llvm/tools/llvm-cov/CoverageFilters.h +++ b/llvm/tools/llvm-cov/CoverageFilters.h @@ -15,8 +15,8 @@ #define LLVM_COV_COVERAGEFILTERS_H #include "llvm/ProfileData/CoverageMapping.h" -#include <vector> #include <memory> +#include <vector> namespace llvm { diff --git a/llvm/tools/llvm-cov/CoverageReport.cpp b/llvm/tools/llvm-cov/CoverageReport.cpp index 7ac9355fa50..6ae6ba55eb9 100644 --- a/llvm/tools/llvm-cov/CoverageReport.cpp +++ b/llvm/tools/llvm-cov/CoverageReport.cpp @@ -14,8 +14,8 @@ #include "CoverageReport.h" #include "CoverageSummary.h" #include "RenderingSupport.h" -#include "llvm/Support/Format.h" #include "llvm/Support/FileSystem.h" +#include "llvm/Support/Format.h" using namespace llvm; namespace { diff --git a/llvm/tools/llvm-cov/CoverageReport.h b/llvm/tools/llvm-cov/CoverageReport.h index e8d34f2a9cf..d18611740ae 100644 --- a/llvm/tools/llvm-cov/CoverageReport.h +++ b/llvm/tools/llvm-cov/CoverageReport.h @@ -14,8 +14,8 @@ #ifndef LLVM_COV_COVERAGEREPORT_H #define LLVM_COV_COVERAGEREPORT_H -#include "CoverageViewOptions.h" #include "CoverageSummary.h" +#include "CoverageViewOptions.h" namespace llvm { diff --git a/llvm/tools/llvm-cov/TestingSupport.cpp b/llvm/tools/llvm-cov/TestingSupport.cpp index 90ada1ba470..6959897482c 100644 --- a/llvm/tools/llvm-cov/TestingSupport.cpp +++ b/llvm/tools/llvm-cov/TestingSupport.cpp @@ -8,14 +8,14 @@ //===----------------------------------------------------------------------===// #include "llvm/Object/ObjectFile.h" -#include "llvm/Support/raw_ostream.h" -#include "llvm/Support/LEB128.h" #include "llvm/Support/CommandLine.h" +#include "llvm/Support/LEB128.h" #include "llvm/Support/ManagedStatic.h" -#include "llvm/Support/Signals.h" #include "llvm/Support/PrettyStackTrace.h" -#include <system_error> +#include "llvm/Support/Signals.h" +#include "llvm/Support/raw_ostream.h" #include <functional> +#include <system_error> using namespace llvm; using namespace object; diff --git a/llvm/tools/llvm-cov/llvm-cov.cpp b/llvm/tools/llvm-cov/llvm-cov.cpp index a67859efba5..86ec26dbd18 100644 --- a/llvm/tools/llvm-cov/llvm-cov.cpp +++ b/llvm/tools/llvm-cov/llvm-cov.cpp @@ -13,8 +13,8 @@ #include "llvm/ADT/StringRef.h" #include "llvm/ADT/StringSwitch.h" -#include "llvm/Support/raw_ostream.h" #include "llvm/Support/Path.h" +#include "llvm/Support/raw_ostream.h" #include <string> using namespace llvm; |