[llvm-exegesis] Increasing wrapping limit.

Summary: Fixes PR39097.

Reviewers: gchatelet

Subscribers: llvm-commits, tschuett

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

llvm-svn: 346328
This commit is contained in:
Clement Courbet 2018-11-07 15:46:45 +00:00
parent bb521e63af
commit 7066769223
1 changed files with 1 additions and 1 deletions

View File

@ -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);