vecmath.cpp 183 Bytes
Newer Older
1
#if defined(__ARM__) || defined(__ARM64__)
peastman's avatar
peastman committed
2
3
4
    #include "neon_mathfun.h"
#else
    #if !defined(__PNACL__)
5
        #define USE_SSE2
peastman's avatar
peastman committed
6
7
8
        #include "sse_mathfun.h"
    #endif
#endif