Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Mar 27, 2024
1 parent 3a3ab64 commit f4f200b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/include/__bit/countr.h
Expand Up @@ -45,7 +45,7 @@ _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 int __coun
if (__t == 0)
return numeric_limits<_Tp>::digits;

return __builtin_ctz(__t);
return __builtin_ctzg(__t);
}

#else // __has_builtin(__builtin_ctzg)
Expand Down

0 comments on commit f4f200b

Please sign in to comment.