diff options
author | Vedant Kumar <vsk@apple.com> | 2016-10-25 00:08:33 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-10-25 00:08:33 +0000 |
commit | 5c61c703877df673b89cb98a74edeb956b94506c (patch) | |
tree | 61abedefb74f6d6d50cbb007d7c674962b373058 /llvm/tools/llvm-cov/SourceCoverageView.h | |
parent | 566a51d193c8c04382f391b42d2181a4b0b1cbf4 (diff) | |
download | llvm-5c61c703877df673b89cb98a74edeb956b94506c.zip llvm-5c61c703877df673b89cb98a74edeb956b94506c.tar.gz llvm-5c61c703877df673b89cb98a74edeb956b94506c.tar.bz2 |
[llvm-cov] Do not print out the filename of the object file
When we load coverage data from multiple objects, we don't have a way to
attribute a source object to a function record. Printing out the object
filename next to the source filename is already not very useful: soon,
it'll actually become misleading. Stop printing out the filename now.
llvm-svn: 285043
Diffstat (limited to 'llvm/tools/llvm-cov/SourceCoverageView.h')
-rw-r--r-- | llvm/tools/llvm-cov/SourceCoverageView.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageView.h b/llvm/tools/llvm-cov/SourceCoverageView.h index 2069fe5..21672f5 100644 --- a/llvm/tools/llvm-cov/SourceCoverageView.h +++ b/llvm/tools/llvm-cov/SourceCoverageView.h @@ -277,10 +277,6 @@ public: /// \brief Return the source name formatted for the host OS. std::string getSourceName() const; - /// \brief Return a verbose description of the source name and the binary it - /// corresponds to. - std::string getVerboseSourceName() const; - const CoverageViewOptions &getOptions() const { return Options; } /// \brief Add an expansion subview to this view. |