diff options
| author | Vedant Kumar <vsk@apple.com> | 2016-09-10 19:37:26 +0000 |
|---|---|---|
| committer | Vedant Kumar <vsk@apple.com> | 2016-09-10 19:37:26 +0000 |
| commit | b1c174aa1c2a4a903b728625f646d075a861ece4 (patch) | |
| tree | 10bbc3faf11adc1ffc64f73ae5584daa546688fb /llvm/tools/llvm-cov/SourceCoverageViewHTML.h | |
| parent | 7b9e9bb49153c714a363acf4958373d8254d5a76 (diff) | |
| download | bcm5719-llvm-b1c174aa1c2a4a903b728625f646d075a861ece4.tar.gz bcm5719-llvm-b1c174aa1c2a4a903b728625f646d075a861ece4.zip | |
[llvm-cov] Move the 'jump to first unexecuted line' link
Having it in the same row as the source name is jarring. Move it next to
the "Source" column label.
llvm-svn: 281146
Diffstat (limited to 'llvm/tools/llvm-cov/SourceCoverageViewHTML.h')
| -rw-r--r-- | llvm/tools/llvm-cov/SourceCoverageViewHTML.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageViewHTML.h b/llvm/tools/llvm-cov/SourceCoverageViewHTML.h index bcf2793666e..b97c1802af8 100644 --- a/llvm/tools/llvm-cov/SourceCoverageViewHTML.h +++ b/llvm/tools/llvm-cov/SourceCoverageViewHTML.h @@ -46,8 +46,7 @@ class SourceCoverageViewHTML : public SourceCoverageView { void renderViewFooter(raw_ostream &OS) override; - void renderSourceName(raw_ostream &OS, bool WholeFile, - unsigned FirstUncoveredLineNo) override; + void renderSourceName(raw_ostream &OS, bool WholeFile) override; void renderLinePrefix(raw_ostream &OS, unsigned ViewDepth) override; @@ -81,7 +80,8 @@ class SourceCoverageViewHTML : public SourceCoverageView { void renderCellInTitle(raw_ostream &OS, StringRef CellText) override; - void renderTableHeader(raw_ostream &OS, unsigned IndentLevel) override; + void renderTableHeader(raw_ostream &OS, unsigned FirstUncoveredLineNo, + unsigned IndentLevel) override; public: SourceCoverageViewHTML(StringRef SourceName, const MemoryBuffer &File, |

