summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/sse/sse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config.tests/unix/sse/sse.cpp')
-rw-r--r--config.tests/unix/sse/sse.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.tests/unix/sse/sse.cpp b/config.tests/unix/sse/sse.cpp
new file mode 100644
index 0000000..e1c23bd
--- /dev/null
+++ b/config.tests/unix/sse/sse.cpp
@@ -0,0 +1,11 @@
+#include <xmmintrin.h>
+#if defined(__GNUC__) && __GNUC__ < 4 && __GNUC_MINOR__ < 3
+#error GCC < 3.2 is known to create internal compiler errors with our MMX code
+#endif
+
+int main(int, char**)
+{
+ __m64 a = _mm_setzero_si64();
+ a = _mm_shuffle_pi16(a, 0);
+ return _m_to_int(a);
+}