[PATCH] D54151: [llvm-exegesis] Increasing wrapping limit.
Clement Courbet via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 6 06:26:01 PST 2018
courbet created this revision.
courbet added a reviewer: gchatelet.
Herald added a subscriber: tschuett.
Fixes PR39097.
Repository:
rL LLVM
https://reviews.llvm.org/D54151
Files:
tools/llvm-exegesis/lib/BenchmarkResult.cpp
Index: tools/llvm-exegesis/lib/BenchmarkResult.cpp
===================================================================
--- tools/llvm-exegesis/lib/BenchmarkResult.cpp
+++ 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.172756.patch
Type: text/x-patch
Size: 587 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181106/a172d2d6/attachment.bin>
More information about the llvm-commits
mailing list