From a333292f05e3fc0ed682ccc8c12c33a4c9d7aafd Mon Sep 17 00:00:00 2001 From: Tomasz Konojacki Date: Wed, 20 Oct 2021 16:51:58 +0200 Subject: inline.h: _BitScanForward64 is available only on 64-bit architectures Fixes #19205 --- inline.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inline.h') diff --git a/inline.h b/inline.h index c8fb089b7f..e6fd4cb6a9 100644 --- a/inline.h +++ b/inline.h @@ -774,7 +774,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 { -- cgit v1.2.1