[CRT/arm64] Fix handling of intrinsics

Fix msvc14.1-arm64-Release build.

Follow-up to db41787 (0.4.15-dev-2914).
CORE-17518
This commit is contained in:
Serge Gautherie 2021-05-24 08:56:17 +02:00 committed by Stanislav Motylkov
parent 724774505e
commit 9a523c8135

View file

@ -202,9 +202,9 @@ _Check_return_ float __cdecl tanhf(_In_ float x);
#if defined(_MSC_VER)
/* Make sure intrinsics don't get in our way */
#if defined(_M_AMD64) || defined(_M_ARM)
#if defined(_M_AMD64) || defined(_M_ARM) || defined(_M_ARM64)
#pragma function(acosf,asinf,atanf,atan2f,ceilf,cosf,coshf,expf,floorf,fmodf,logf,log10f,powf,sinf,sinhf,sqrtf,tanf,tanhf)
#endif /* defined(_M_AMD64) || defined(_M_ARM) */
#endif /* defined(_M_AMD64) || defined(_M_ARM) || defined(_M_ARM64) */
#if (_MSC_VER >= 1920)
#pragma function(_hypotf)
#endif