Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit ef1cfa5

Browse files
committed
Fix ARM build break
1 parent 5eac91c commit ef1cfa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classlibnative/bcltype/bignum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ UINT32 BigNum::LogBase2(UINT64 value)
582582
{
583583
_ASSERTE(value != 0);
584584

585-
#if defined(_TARGET_X86_) && !defined(FEATURE_PAL)
585+
#if (defined(_X86_) || defined(_ARM_)) && !defined(FEATURE_PAL)
586586
UINT64 temp = value >> 32;
587587
if (temp != 0)
588588
{

0 commit comments

Comments
 (0)