Fix arm32 build break
authorRahul Kumar <rahku@microsoft.com>
Wed, 19 Oct 2016 20:03:43 +0000 (13:03 -0700)
committerRahul Kumar <rahku@microsoft.com>
Wed, 19 Oct 2016 20:03:43 +0000 (13:03 -0700)
[tfs-changeset: 1634155]

Commit migrated from https://github.com/dotnet/coreclr/commit/d6de1c286130035629e6554ddb2ac2004abc4aad

src/coreclr/src/classlibnative/float/floatsingle.cpp

index 2975b95..ebae724 100644 (file)
@@ -13,7 +13,7 @@
 
 // Windows x86 and Windows ARM don't define _isnanf() but they do define a generic macro isnan()
 #if (defined(_TARGET_X86_) || defined(_TARGET_ARM_) || defined(_TARGET_ARM64_)) && !defined(FEATURE_PAL) && !defined(_isnanf)
-#if defined(_TARGET_ARM64_)
+#if defined(_TARGET_ARM64_) || defined(_TARGET_ARM_)
 #define _isnanf      _isnan
 #else
 #define _isnanf      isnan