2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / vaddv-intrinsic.x
blob7bf38ca0ff00f8a80328ae1c2121d358858fe680
2 float32_t
3 test_vaddv_v2sf (const float32_t *pool)
5   float32x2_t val;
7   val = vld1_f32 (pool);
8   return vaddv_f32 (val);
11 float32_t
12 test_vaddv_v4sf (const float32_t *pool)
14   float32x4_t val;
16   val = vld1q_f32 (pool);
17   return vaddvq_f32 (val);
20 float64_t
21 test_vaddv_v2df (const float64_t *pool)
23   float64x2_t val;
25   val = vld1q_f64 (pool);
26   return vaddvq_f64 (val);