This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 937aecfb Allow a standard library to implement conditional noexcept fo [...] new 688edc78 Update google benchmark
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: utils/google-benchmark/AUTHORS | 3 + utils/google-benchmark/CMakeLists.txt | 28 +- utils/google-benchmark/CONTRIBUTORS | 3 + utils/google-benchmark/README.md | 66 ++++- .../cmake/AddCXXCompilerFlag.cmake | 35 ++- utils/google-benchmark/cmake/CXXFeatureCheck.cmake | 2 +- utils/google-benchmark/cmake/Config.cmake.in | 1 + utils/google-benchmark/docs/tools.md | 59 ++++ .../include/benchmark/benchmark_api.h | 97 +++++-- .../google-benchmark/include/benchmark/reporter.h | 13 +- utils/google-benchmark/mingw.py | 320 +++++++++++++++++++++ utils/google-benchmark/src/CMakeLists.txt | 45 ++- utils/google-benchmark/src/benchmark.cc | 37 ++- .../google-benchmark/src/benchmark_api_internal.h | 2 + utils/google-benchmark/src/benchmark_register.cc | 35 ++- utils/google-benchmark/src/complexity.cc | 40 +++ utils/google-benchmark/src/console_reporter.cc | 31 +- utils/google-benchmark/src/counter.cc | 68 +++++ .../benchmark/benchmark.h => src/counter.h} | 17 +- utils/google-benchmark/src/csv_reporter.cc | 56 +++- utils/google-benchmark/src/cycleclock.h | 31 +- utils/google-benchmark/src/internal_macros.h | 19 +- utils/google-benchmark/src/json_reporter.cc | 7 +- utils/google-benchmark/src/re.h | 16 +- utils/google-benchmark/src/sleep.cc | 3 +- utils/google-benchmark/src/sleep.h | 12 +- utils/google-benchmark/src/string_util.cc | 20 +- utils/google-benchmark/src/sysinfo.cc | 9 +- utils/google-benchmark/src/timers.cc | 45 +-- utils/google-benchmark/test/CMakeLists.txt | 19 ++ utils/google-benchmark/test/benchmark_test.cc | 20 +- utils/google-benchmark/test/cxx03_test.cc | 6 + utils/google-benchmark/test/diagnostics_test.cc | 2 +- utils/google-benchmark/test/options_test.cc | 24 +- utils/google-benchmark/test/output_test_helper.cc | 12 +- .../google-benchmark/test/reporter_output_test.cc | 6 +- utils/google-benchmark/tools/compare_bench.py | 58 +++- .../tools/gbench/Inputs/test1_run1.json | 14 + .../tools/gbench/Inputs/test1_run2.json | 14 + utils/google-benchmark/tools/gbench/report.py | 21 +- utils/google-benchmark/tools/gbench/util.py | 61 ++-- 41 files changed, 1212 insertions(+), 165 deletions(-) create mode 100644 utils/google-benchmark/cmake/Config.cmake.in create mode 100644 utils/google-benchmark/docs/tools.md create mode 100644 utils/google-benchmark/mingw.py create mode 100644 utils/google-benchmark/src/counter.cc copy utils/google-benchmark/{include/benchmark/benchmark.h => src/counter.h} (61%)