diff options
author | Clement Courbet <courbet@google.com> | 2018-06-14 06:57:52 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2018-06-14 06:57:52 +0000 |
commit | 49fad1cbf2bba88a5c0d596e3aa46d142f9d73ad (patch) | |
tree | 1a361c823cf7c06511e4012d73b75c9418dbbf8c /llvm/tools/llvm-exegesis/lib/BenchmarkResult.h | |
parent | f209649dfcfef475de740a4755a6c480db360a6f (diff) | |
download | bcm5719-llvm-49fad1cbf2bba88a5c0d596e3aa46d142f9d73ad.tar.gz bcm5719-llvm-49fad1cbf2bba88a5c0d596e3aa46d142f9d73ad.zip |
[llvm-exegesis] Use BenchmarkResult::Instructions instead of OpcodeName
Summary:
Get rid of OpcodeName.
To remove the opcode name from an old file:
```
cat old_file | sed '/opcode_name.*/d'
```
Reviewers: gchatelet
Subscribers: tschuett, llvm-commits
Differential Revision: https://reviews.llvm.org/D48121
llvm-svn: 334691
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/BenchmarkResult.h')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/BenchmarkResult.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h index 5fa9af8e9d3..c226aa0020a 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h @@ -32,7 +32,6 @@ struct BenchmarkResultContext; // Forward declaration. struct InstructionBenchmarkKey { // The LLVM opcode name. - std::string OpcodeName; // FIXME: Deprecated, use Instructions below. std::vector<llvm::MCInst> Instructions; // An opaque configuration, that can be used to separate several benchmarks of // the same instruction under different configurations. |