aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/aarch64/fp16_fmul_high.h
blob: def85038a7208725ecb1db0888a1cc651aaa4934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "arm_neon.h"

float32x2_t
test_vfmlal_high_f16 (float32x2_t r, float16x4_t a, float16x4_t b)
{
  return vfmlal_high_f16 (r, a, b);
}

float32x4_t
test_vfmlalq_high_f16 (float32x4_t r, float16x8_t a, float16x8_t b)
{
  return vfmlalq_high_f16 (r, a, b);
}

float32x2_t
test_vfmlsl_high_f16 (float32x2_t r, float16x4_t a, float16x4_t b)
{
  return vfmlsl_high_f16 (r, a, b);
}

float32x4_t
test_vfmlslq_high_f16 (float32x4_t r, float16x8_t a, float16x8_t b)
{
  return vfmlslq_high_f16 (r, a, b);
}