diff options
Diffstat (limited to 'llvm/tools/llvm-cov')
-rw-r--r-- | llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp | 3 | ||||
-rw-r--r-- | llvm/tools/llvm-cov/SourceCoverageViewText.cpp | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp b/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp index 31c39c7b1bd..375b0dee06d 100644 --- a/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp +++ b/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp @@ -393,8 +393,7 @@ void SourceCoverageViewHTML::renderViewHeader(raw_ostream &OS) { } void SourceCoverageViewHTML::renderViewFooter(raw_ostream &OS) { - OS << EndTable << EndCenteredDiv - << tag("h5", escape(getOptions().getLLVMVersionString(), getOptions())); + OS << EndTable << EndCenteredDiv; } void SourceCoverageViewHTML::renderSourceName(raw_ostream &OS, bool WholeFile) { diff --git a/llvm/tools/llvm-cov/SourceCoverageViewText.cpp b/llvm/tools/llvm-cov/SourceCoverageViewText.cpp index 954572a1c21..16bbe5648b8 100644 --- a/llvm/tools/llvm-cov/SourceCoverageViewText.cpp +++ b/llvm/tools/llvm-cov/SourceCoverageViewText.cpp @@ -67,10 +67,7 @@ unsigned getDividerWidth(const CoverageViewOptions &Opts) { void SourceCoverageViewText::renderViewHeader(raw_ostream &) {} -void SourceCoverageViewText::renderViewFooter(raw_ostream &OS) { - getOptions().colored_ostream(OS, raw_ostream::CYAN) - << "\n" << getOptions().getLLVMVersionString(); -} +void SourceCoverageViewText::renderViewFooter(raw_ostream &) {} void SourceCoverageViewText::renderSourceName(raw_ostream &OS, bool WholeFile) { std::string ViewInfo = WholeFile ? getVerboseSourceName() : getSourceName(); |