Skip to content

Commit 97b367a

Browse files
mordantememfrob
authored andcommitted
[NFC][libc++] Fix _LIBCPP_HAS_BITSCAN64 usage.
Seems line was accidentally left in llvm-svn: 290924 86eebc5 Reviewed By: #libc, ldionne Differential Revision: https://reviews.llvm.org/D97211
1 parent 587bb33 commit 97b367a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

libcxx/include/__bits

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ inline _LIBCPP_INLINE_VISIBILITY
7676
int __libcpp_ctz(unsigned long long __x) {
7777
unsigned long __where;
7878
#if defined(_LIBCPP_HAS_BITSCAN64)
79-
(defined(_M_AMD64) || defined(__x86_64__))
8079
if (_BitScanForward64(&__where, __x))
8180
return static_cast<int>(__where);
8281
#else

0 commit comments

Comments
 (0)