summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/mmx/mmx.cpp
blob: 617cd62b66e3d0d7780f29d80e7b4abd74dfe832 (plain)
1
2
3
4
5
6
7
8
9
10
#include <mmintrin.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**)
{
    _mm_empty();
    return 0;
}