diff options
| author | Clement Courbet <courbet@google.com> | 2018-11-07 15:46:45 +0000 |
|---|---|---|
| committer | Clement Courbet <courbet@google.com> | 2018-11-07 15:46:45 +0000 |
| commit | 706676922320629d99ef0a6e86a6323800f63eb5 (patch) | |
| tree | dd9f9a4d8aa4bbd3b256d8440ec778e31d21bd09 /llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp | |
| parent | bb521e63afe78633bf155f472f3fc439318115c3 (diff) | |
| download | bcm5719-llvm-706676922320629d99ef0a6e86a6323800f63eb5.tar.gz bcm5719-llvm-706676922320629d99ef0a6e86a6323800f63eb5.zip | |
[llvm-exegesis] Increasing wrapping limit.
Summary: Fixes PR39097.
Reviewers: gchatelet
Subscribers: llvm-commits, tschuett
Differential Revision: https://reviews.llvm.org/D54151
llvm-svn: 346328
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp')
| -rw-r--r-- | llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp index 4b91c6c3b3c..0507ae8959d 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp @@ -344,7 +344,7 @@ InstructionBenchmark::readYamls(const LLVMState &State, void InstructionBenchmark::writeYamlTo(const LLVMState &State, llvm::raw_ostream &OS) { - llvm::yaml::Output Yout(OS); + llvm::yaml::Output Yout(OS, nullptr /*Ctx*/, 200 /*WrapColumn*/); YamlContext Context(State); Yout.beginDocuments(); llvm::yaml::yamlize(Yout, *this, /*unused*/ true, Context); |

