From ef1cfa58c17c7bd7b2e466788102cda1158efe5b Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Tue, 12 Sep 2017 21:06:52 -0700 Subject: [PATCH] Fix ARM build break --- src/classlibnative/bcltype/bignum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classlibnative/bcltype/bignum.cpp b/src/classlibnative/bcltype/bignum.cpp index c22c09c8d1c9..c4aa53452411 100644 --- a/src/classlibnative/bcltype/bignum.cpp +++ b/src/classlibnative/bcltype/bignum.cpp @@ -582,7 +582,7 @@ UINT32 BigNum::LogBase2(UINT64 value) { _ASSERTE(value != 0); -#if defined(_TARGET_X86_) && !defined(FEATURE_PAL) +#if (defined(_X86_) || defined(_ARM_)) && !defined(FEATURE_PAL) UINT64 temp = value >> 32; if (temp != 0) {