diff options
author | Sean Eveson <eveson.sean@gmail.com> | 2017-09-27 16:20:07 +0000 |
---|---|---|
committer | Sean Eveson <eveson.sean@gmail.com> | 2017-09-27 16:20:07 +0000 |
commit | 1439fa6236abae2a9b523e54b19d0175175beb2a (patch) | |
tree | 042f5052c29c8e9f2fb24be7d86be26dac498cce /llvm/tools/llvm-cov/SourceCoverageView.h | |
parent | 21b013ebc159a0a85fa96de804dc4334c88d314f (diff) | |
download | llvm-1439fa6236abae2a9b523e54b19d0175175beb2a.zip llvm-1439fa6236abae2a9b523e54b19d0175175beb2a.tar.gz llvm-1439fa6236abae2a9b523e54b19d0175175beb2a.tar.bz2 |
Revert "[llvm-cov] Create directory structure when filtering using -name*= options"
Test failures.
llvm-svn: 314314
Diffstat (limited to 'llvm/tools/llvm-cov/SourceCoverageView.h')
-rw-r--r-- | llvm/tools/llvm-cov/SourceCoverageView.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageView.h b/llvm/tools/llvm-cov/SourceCoverageView.h index 7c7e878..72d6866 100644 --- a/llvm/tools/llvm-cov/SourceCoverageView.h +++ b/llvm/tools/llvm-cov/SourceCoverageView.h @@ -22,7 +22,6 @@ namespace llvm { -class CoverageFilter; class SourceCoverageView; /// \brief A view that represents a macro or include expansion. @@ -112,8 +111,7 @@ public: /// \brief Create an index which lists reports for the given source files. virtual Error createIndexFile(ArrayRef<std::string> SourceFiles, - const coverage::CoverageMapping &Coverage, - const CoverageFilter &Filters) = 0; + const coverage::CoverageMapping &Coverage) = 0; /// @} }; @@ -260,7 +258,7 @@ public: /// \brief Print the code coverage information for a specific portion of a /// source file to the output stream. void print(raw_ostream &OS, bool WholeFile, bool ShowSourceName, - bool ShowTitle, unsigned ViewDepth = 0); + unsigned ViewDepth = 0); }; } // namespace llvm |