gallium: Add a new PIPE_ARCH_SSSE3 define for SSSE3 compiler support.

This commit is contained in:
José Fonseca 2010-07-14 12:23:16 +01:00
parent 582132aaef
commit 5e2437a232
1 changed files with 5 additions and 0 deletions

View File

@ -92,6 +92,11 @@
#else
#define PIPE_ARCH_SSE
#endif
#if defined(PIPE_CC_GCC) && !defined(__SSSE3__)
/* #warning SSE3 support requires -msse3 compiler options */
#else
#define PIPE_ARCH_SSSE3
#endif
#endif
#if defined(__PPC__)