コード例 #1
0
ファイル: xop-builtins.c プロジェクト: ashwinma/clang_trunk
__m128i test_mm_rot_epi32(__m128i a, __m128i b) {
  // CHECK: @llvm.x86.xop.vprotd
  // CHECK-ASM: vprotd %xmm{{.*}}, %xmm{{.*}}, %xmm{{.*}}
  return _mm_rot_epi32(a, b);
}
コード例 #2
0
ファイル: xop-builtins.c プロジェクト: ElaraFX/clang
__m128i test_mm_rot_epi32(__m128i a, __m128i b) {
  // CHECK-LABEL: test_mm_rot_epi32
  // CHECK: call <4 x i32> @llvm.x86.xop.vprotd(<4 x i32> %{{.*}}, <4 x i32> %{{.*}})
  return _mm_rot_epi32(a, b);
}
コード例 #3
0
ファイル: xop-builtins.c プロジェクト: AlexDenisov/clang
__m128i test_mm_rot_epi32(__m128i a, __m128i b) {
  // CHECK-LABEL: test_mm_rot_epi32
  // CHECK: @llvm.x86.xop.vprotd
  return _mm_rot_epi32(a, b);
}