summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-09-13 12:49:24 -0700
committerGitHub <noreply@github.com>2017-09-13 12:49:24 -0700
commitc41e51974b39f4b36170b6444a30baf5092393f8 (patch)
tree9a2efe4d672ac406b7590ab522f828fcb0f04f55
parentf5b7f8ba68688382e57999e33ae39f46ddadd47a (diff)
downloadcoreclr-c41e51974b39f4b36170b6444a30baf5092393f8.tar.gz
coreclr-c41e51974b39f4b36170b6444a30baf5092393f8.tar.bz2
coreclr-c41e51974b39f4b36170b6444a30baf5092393f8.zip
Fix ARM build break (#13932)
-rw-r--r--src/classlibnative/bcltype/bignum.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classlibnative/bcltype/bignum.cpp b/src/classlibnative/bcltype/bignum.cpp
index c22c09c8d1..c4aa534524 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)
{