Remove superfluous cache line scaling in JSON reporter. (#896)

Cache size is already stored in bytes.
This commit is contained in:
András Leitereg 2019-10-24 21:13:03 +02:00 committed by Roman Lebedev
parent d16ae64e5a
commit cf446a18bf

View File

@ -135,7 +135,7 @@ bool JSONReporter::ReportContext(const Context& context) {
out << cache_indent << FormatKV("level", static_cast<int64_t>(CI.level))
<< ",\n";
out << cache_indent
<< FormatKV("size", static_cast<int64_t>(CI.size) * 1000u) << ",\n";
<< FormatKV("size", static_cast<int64_t>(CI.size)) << ",\n";
out << cache_indent
<< FormatKV("num_sharing", static_cast<int64_t>(CI.num_sharing))
<< "\n";