[PATCH] D47785: [llvm-exegesis] Serializes instruction's operand in BenchmarkResult's key.
Clement Courbet via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 6 23:58:24 PDT 2018
courbet added inline comments.
================
Comment at: tools/llvm-exegesis/lib/BenchmarkResult.cpp:18
+static constexpr const char kIntegerFormat[] = "i_0x%lx";
+static constexpr const char kDoubleFormat[] = "f_%la";
----------------
This should be
`static constexpr const char kIntegerFormat[] = "i_0x%" PRId64 "x";`
Repository:
rL LLVM
https://reviews.llvm.org/D47785
More information about the llvm-commits
mailing list