summaryrefslogtreecommitdiff
path: root/probe/HAVE__MM_CLMULEPI64_SI128
blob: 07c38bbe2fa5d7a979a59bfc3fde428f6f25c0a5 (plain)
1
2
3
4
5
6
7
#include <immintrin.h>
static __m128i x, y;
__attribute__((__target__("pclmul")))
int main(void) {
	_mm_clmulepi64_si128(x, y, 0);
	return 0;
}