brintos

brintos / llvm-project-archived public Read only

0
0
Text · 277 B · 44300f6 Raw
10 lines · c
1// RUN: %clang_cc1 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +pclmul -emit-llvm -o - | FileCheck %s2 3 4#include <wmmintrin.h>5 6__m128i test_mm_clmulepi64_si128(__m128i a, __m128i b) {7  // CHECK: @llvm.x86.pclmulqdq8  return _mm_clmulepi64_si128(a, b, 0);9}10