diff options
Diffstat (limited to 'libcxx/fuzzing/fuzz_test.cpp')
-rw-r--r-- | libcxx/fuzzing/fuzz_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/fuzzing/fuzz_test.cpp b/libcxx/fuzzing/fuzz_test.cpp index 9fa6f433404..508c3b65f2d 100644 --- a/libcxx/fuzzing/fuzz_test.cpp +++ b/libcxx/fuzzing/fuzz_test.cpp @@ -155,7 +155,7 @@ void test_one(const char *filename, FuzzProc fp) std::cout << "Execution time: " << std::chrono::duration_cast<std::chrono::milliseconds>(finish_time - start_time).count() << " milliseconds" << std::endl; - std::cout << "Memory: " + std::cout << "Memory: " << mc.totalBytesAllocated << " bytes allocated (" << mc.totalAllocationCount << " allocations); " << mc.netAllocationCount << " allocations remain" << std::endl; |