mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[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:
parent
724774505e
commit
9a523c8135
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue