summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2022-03-22 04:38:49 +0800
committerMarge Bot <emma+marge@anholt.net>2022-03-23 21:44:04 +0000
commit821c141f9dcae02c4683afdd61cbc840536f29ab (patch)
tree763a646199999e5d2aa6baed0f655e1879fb2681 /src/gallium/include/pipe
parent55a5635fb2ef4251c167a900d806215504ac75a2 (diff)
gallium: Remove unused macro PIPE_ARCH_SSSE3
After removal inline function `_mm_shuffle_epi8`, the macro `PIPE_ARCH_SSSE3` have no need anymore, remove it too. Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Reviewed-by: Matt Turner <mattst88@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14077>
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r--src/gallium/include/pipe/p_config.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gallium/include/pipe/p_config.h b/src/gallium/include/pipe/p_config.h
index 978aa455ecb..26c6d6008a2 100644
--- a/src/gallium/include/pipe/p_config.h
+++ b/src/gallium/include/pipe/p_config.h
@@ -96,11 +96,6 @@
#else
#define PIPE_ARCH_SSE
#endif
-#if defined(PIPE_CC_GCC) && (__GNUC__ * 100 + __GNUC_MINOR__) < 409 && !defined(__SSSE3__)
-/* #warning SSE3 support requires -msse3 compiler options before GCC 4.9 */
-#else
-#define PIPE_ARCH_SSSE3
-#endif
#endif
#if defined(__ppc__) || defined(__ppc64__) || defined(__PPC__)