Ejemplo n.º 1
0
__m256d test_mm256_fnmadd_pd(__m256d a, __m256d b, __m256d c) {
  // CHECK: @llvm.x86.fma.vfnmadd.pd.256
  return _mm256_fnmadd_pd(a, b, c);
}
Ejemplo n.º 2
0
__m256d test_mm256_fnmadd_pd(__m256d a, __m256d b, __m256d c) {
  // CHECK-LABEL: test_mm256_fnmadd_pd
  // CHECK: [[NEG:%.+]] = fsub <4 x double> <double -0.000000e+00, double -0.000000e+00, double -0.000000e+00, double -0.000000e+00>, %{{.+}}
  // CHECK: @llvm.x86.fma.vfmadd.pd.256(<4 x double> [[NEG]], <4 x double> %{{.+}}, <4 x double> %{{.+}})
  return _mm256_fnmadd_pd(a, b, c);
}
Ejemplo n.º 3
0
__m256d
check_mm256_fnmadd_pd (__m256d a, __m256d b, __m256d c)
{
  return _mm256_fnmadd_pd (a, b, c);
}