3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

Build fix for systems that don't come with SSE4.1 support by default

This commit is contained in:
Christoph M. Wintersteiger 2017-03-24 11:51:36 +00:00
parent 46ff4ae40d
commit e9cd4d1057

View file

@ -52,8 +52,10 @@ Revision History:
#ifdef USE_INTRINSICS
#include <emmintrin.h>
#ifdef __SSE4_1__
#include <smmintrin.h>
#endif
#endif
hwf_manager::hwf_manager() :
m_mpz_manager(m_mpq_manager)