[libc-commits] [libc] [llvm] [libc][math][c23] Improve rsqrtf16() function (PR #160639)
Anton Shepelev via libc-commits
libc-commits at lists.llvm.org
Fri Jun 5 20:50:11 PDT 2026
================
@@ -19,9 +19,15 @@ set(LLVM_LINK_COMPONENTS
# Add Unit Testing Support
#==============================================================================
-make_gtest_target()
+if(COMMAND make_gtest_target)
+ make_gtest_target()
+endif()
function(add_libc_benchmark_unittest target_name)
+ if(NOT COMMAND make_gtest_target)
+ return()
+ endif()
+
----------------
amemov wrote:
need to drop that - added it temporarily to play locally
https://github.com/llvm/llvm-project/pull/160639
More information about the libc-commits
mailing list