Skip to content

Commit

Permalink
inline.h: _BitScanForward64 is available only on 64-bit architectures
Browse files Browse the repository at this point in the history
Fixes #19205
  • Loading branch information
xenu committed Oct 20, 2021
1 parent 52e3f3a commit aee5e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inline.h
Expand Up @@ -772,7 +772,7 @@ Perl_lsbit_pos64(U64 word)

return (unsigned) PERL_CTZ_64(word);

# elif U64SIZE == 8 && defined(_MSC_VER)
# elif U64SIZE == 8 && defined(_WIN64) && defined(_MSC_VER)
# define PERL_HAS_FAST_GET_LSB_POS64

{
Expand Down

0 comments on commit aee5e9e

Please sign in to comment.