diff options
author | Clement Courbet <courbet@google.com> | 2018-09-26 13:35:10 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2018-09-26 13:35:10 +0000 |
commit | 28d4f858243e404a08a905d6e764b74a6824d2d1 (patch) | |
tree | dfb1a10ce9ef5bfc6aa94b65936992a9df9a3bc9 /llvm/tools/llvm-exegesis/lib/Analysis.cpp | |
parent | 6acaa18afcc888c5cf66bc9b17318eaf45ff4a91 (diff) | |
download | llvm-28d4f858243e404a08a905d6e764b74a6824d2d1.zip llvm-28d4f858243e404a08a905d6e764b74a6824d2d1.tar.gz llvm-28d4f858243e404a08a905d6e764b74a6824d2d1.tar.bz2 |
[llvm-exegesis] Get rid of debug_string.
Summary:
THis is a backwards-compatible change (existing files will work as
expected).
See PR39082.
Reviewers: gchatelet
Subscribers: tschuett, llvm-commits
Differential Revision: https://reviews.llvm.org/D52546
llvm-svn: 343108
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/Analysis.cpp')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/Analysis.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/Analysis.cpp b/llvm/tools/llvm-exegesis/lib/Analysis.cpp index 54dc4be..1da36b2 100644 --- a/llvm/tools/llvm-exegesis/lib/Analysis.cpp +++ b/llvm/tools/llvm-exegesis/lib/Analysis.cpp @@ -248,10 +248,7 @@ void Analysis::printSchedClassClustersHtml( for (const auto &Measurement : Points[Clusters[0].getPointIds()[0]].Measurements) { OS << "<th>"; - if (Measurement.DebugString.empty()) - writeEscaped<kEscapeHtml>(OS, Measurement.Key); - else - writeEscaped<kEscapeHtml>(OS, Measurement.DebugString); + writeEscaped<kEscapeHtml>(OS, Measurement.Key); OS << "</th>"; } OS << "</tr>"; |