summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp
diff options
context:
space:
mode:
authorClement Courbet <courbet@google.com>2018-11-07 15:46:45 +0000
committerClement Courbet <courbet@google.com>2018-11-07 15:46:45 +0000
commit706676922320629d99ef0a6e86a6323800f63eb5 (patch)
treedd9f9a4d8aa4bbd3b256d8440ec778e31d21bd09 /llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp
parentbb521e63afe78633bf155f472f3fc439318115c3 (diff)
downloadbcm5719-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.cpp2
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);
OpenPOWER on IntegriCloud