diff options
Diffstat (limited to 'libcxx/utils/google-benchmark')
6 files changed, 0 insertions, 6 deletions
diff --git a/libcxx/utils/google-benchmark/.clang-format b/libcxx/utils/google-benchmark/.clang-format index 4b3f13fa55e..06ea346a106 100644 --- a/libcxx/utils/google-benchmark/.clang-format +++ b/libcxx/utils/google-benchmark/.clang-format @@ -2,4 +2,3 @@ Language: Cpp BasedOnStyle: Google ... - diff --git a/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp b/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp index b5b91cdab7c..105189f02ee 100644 --- a/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp @@ -9,4 +9,3 @@ int main() { } return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0; } - diff --git a/libcxx/utils/google-benchmark/cmake/posix_regex.cpp b/libcxx/utils/google-benchmark/cmake/posix_regex.cpp index 466dc62560a..02f6dfc278a 100644 --- a/libcxx/utils/google-benchmark/cmake/posix_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/posix_regex.cpp @@ -11,4 +11,3 @@ int main() { regfree(&re); return ret; } - diff --git a/libcxx/utils/google-benchmark/cmake/std_regex.cpp b/libcxx/utils/google-benchmark/cmake/std_regex.cpp index 696f2a26bce..8177c482e83 100644 --- a/libcxx/utils/google-benchmark/cmake/std_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/std_regex.cpp @@ -7,4 +7,3 @@ int main() { std::regex_constants::extended | std::regex_constants::nosubs); return std::regex_search(str, re) ? 0 : -1; } - diff --git a/libcxx/utils/google-benchmark/docs/AssemblyTests.md b/libcxx/utils/google-benchmark/docs/AssemblyTests.md index 1fbdc269b53..0d06f50ac65 100644 --- a/libcxx/utils/google-benchmark/docs/AssemblyTests.md +++ b/libcxx/utils/google-benchmark/docs/AssemblyTests.md @@ -144,4 +144,3 @@ tests to other architectures and compilers (using `CHECK` prefixes). Furthermore, the tests fail for builds which specify additional flags that modify code generation, including `--coverage` or `-fsanitize=`. - diff --git a/libcxx/utils/google-benchmark/test/AssemblyTests.cmake b/libcxx/utils/google-benchmark/test/AssemblyTests.cmake index 3d078586f1d..8605221ff71 100644 --- a/libcxx/utils/google-benchmark/test/AssemblyTests.cmake +++ b/libcxx/utils/google-benchmark/test/AssemblyTests.cmake @@ -43,4 +43,3 @@ macro(add_filecheck_test name) WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) endforeach() endmacro() - |