You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
336 B
12 lines
336 B
7 months ago
|
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin -target-feature +pclmul -emit-llvm -o - | FileCheck %s
|
||
|
|
||
|
// Don't include mm_malloc.h, it's system specific.
|
||
|
#define __MM_MALLOC_H
|
||
|
|
||
|
#include <wmmintrin.h>
|
||
|
|
||
|
__m128i test_mm_clmulepi64_si128(__m128i a, __m128i b) {
|
||
|
// CHECK: @llvm.x86.pclmulqdq
|
||
|
return _mm_clmulepi64_si128(a, b, 0);
|
||
|
}
|