* src/smooth/ftgrays.c (FT_SSE2): Don't define for VMS.

This commit is contained in:
Jouk Jansen 2023-05-09 07:15:53 +02:00 committed by Werner Lemberg
parent e02a40a4f8
commit c3876354e5
1 changed files with 3 additions and 3 deletions

View File

@ -1006,9 +1006,9 @@ typedef ptrdiff_t FT_PtrDist;
*
* For other cases, using binary splits is actually slightly faster.
*/
#if defined( __SSE2__ ) || \
defined( __x86_64__ ) || \
defined( _M_AMD64 ) || \
#if defined( __SSE2__ ) || \
( defined( __x86_64__ ) && !defined( __VMS ) ) || \
defined( _M_AMD64 ) || \
( defined( _M_IX86_FP ) && _M_IX86_FP >= 2 )
# define FT_SSE2 1
#else