diff options
author | Clement Courbet <courbet@google.com> | 2018-05-17 08:12:29 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2018-05-17 08:12:29 +0000 |
commit | 295a554ce4a29ab2ef5e9ab538ac83596a536635 (patch) | |
tree | 2bb66578ef79379869c71cd47850b712d03ac02e /llvm/tools/llvm-exegesis/lib/BenchmarkResult.h | |
parent | ee110fb735651d63252f70104d39c5a0376ee20d (diff) | |
download | bcm5719-llvm-295a554ce4a29ab2ef5e9ab538ac83596a536635.tar.gz bcm5719-llvm-295a554ce4a29ab2ef5e9ab538ac83596a536635.zip |
Revert r332579 "[llvm-exegesis] Update to cover latency through another opcode."
The revision failed to update the ARM tests.
llvm-svn: 332580
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/BenchmarkResult.h')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/BenchmarkResult.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h index 3a7d241dbd0..cf9bcece99a 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h @@ -50,14 +50,9 @@ struct InstructionBenchmark { std::string Info; static InstructionBenchmark readYamlOrDie(llvm::StringRef Filename); - static std::vector<InstructionBenchmark> + static std::vector<InstructionBenchmark> readYamlsOrDie(llvm::StringRef Filename); - // Read functions. - readYamlsOrDie(llvm::StringRef Filename); - void readYamlFrom(llvm::StringRef InputContent); - - // Write functions, non-const because of YAML traits. - void writeYamlTo(llvm::raw_ostream &S); + // Unfortunately this function is non const because of YAML traits. void writeYamlOrDie(const llvm::StringRef Filename); }; |