[PATCH] D54151: [llvm-exegesis] Increasing wrapping limit.

Clement Courbet via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 7 07:50:21 PST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL346328: [llvm-exegesis] Increasing wrapping limit. (authored by courbet, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D54151

Files:
  llvm/trunk/tools/llvm-exegesis/lib/BenchmarkResult.cpp


Index: llvm/trunk/tools/llvm-exegesis/lib/BenchmarkResult.cpp
===================================================================
--- llvm/trunk/tools/llvm-exegesis/lib/BenchmarkResult.cpp
+++ llvm/trunk/tools/llvm-exegesis/lib/BenchmarkResult.cpp
@@ -344,7 +344,7 @@
 
 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);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D54151.172957.patch
Type: text/x-patch
Size: 620 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181107/d9845315/attachment.bin>


More information about the llvm-commits mailing list