1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 18:15:18 -07:00

__vectorcall didn't exist prior to Visual Studio 2012

This commit is contained in:
Frank Denis 2022-11-14 12:56:00 +01:00
parent ad3241a0da
commit 8489b4d124
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
#pragma GCC target("pclmul")
#endif
#ifndef _MSC_VER
#if !defined(_MSC_VER) || _MSC_VER < 1800
#define __vectorcall
#endif

View File

@ -15,7 +15,7 @@
#if defined(HAVE_ARMCRYPTO) && defined(__clang__) && defined(NATIVE_LITTLE_ENDIAN)
#ifndef _MSC_VER
#if !defined(MSC_VER) || _MSC_VER < 1800
#define __vectorcall
#endif