Use builtin_clz for clang on windows (#3939)

This commit is contained in:
OetkenPurveyorOfCode 2024-04-28 20:29:45 +02:00 committed by GitHub
parent 10e702facd
commit f78721991f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ extern int zsinflate(void *out, int cap, const void *in, int size);
static int
sinfl_bsr(unsigned n) {
#ifdef _MSC_VER
#if defined(_MSC_VER) && !defined(__clang__)
_BitScanReverse(&n, n);
return n;
#elif defined(__GNUC__) || defined(__clang__)