diff --git a/include/freetype/internal/ftcalc.h b/include/freetype/internal/ftcalc.h index f24930792..a0f6890f8 100644 --- a/include/freetype/internal/ftcalc.h +++ b/include/freetype/internal/ftcalc.h @@ -370,8 +370,7 @@ FT_BEGIN_HEADER #define FT_MSB( x ) ( 31 - __builtin_clzl( x ) ) -#endif /* __GNUC__ */ - +#endif #elif defined( _MSC_VER ) && ( _MSC_VER >= 1400 ) @@ -395,11 +394,23 @@ FT_BEGIN_HEADER #endif -#endif /* _MSC_VER */ +#elif defined( __DECC ) || defined( __DECCXX ) +#include + +#define FT_MSB( x ) (FT_Int)( 63 - _leadz( x ) ) + +#elif defined( _CRAYC ) + +#include + +#define FT_MSB( x ) (FT_Int)( 31 - _leadz32( x ) ) + +#endif /* FT_MSB macro definitions */ #endif /* !FT_CONFIG_OPTION_NO_ASSEMBLER */ + #ifndef FT_MSB FT_BASE( FT_Int )