Skip to content

Commit

Permalink
[llvm-exegesis] Increasing wrapping limit.
Browse files Browse the repository at this point in the history
Summary: Fixes PR39097.

Reviewers: gchatelet

Subscribers: llvm-commits, tschuett

Differential Revision: https://reviews.llvm.org/D54151

llvm-svn: 346328
  • Loading branch information
legrosbuffle committed Nov 7, 2018
1 parent bb521e6 commit 7066769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 7066769

Please sign in to comment.