view gcc/testsuite/g++.dg/other/arm-neon-1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Basic smoke test for arm_neon.h */

/* { dg-do assemble } */
/* { dg-require-effective-target arm_neon_ok } */
/* { dg-add-options arm_neon } */

#include "arm_neon.h"

float a[4];

void test(void)
{
  float32x2x2_t v;
  float32x2_t res;
  v = vld2_f32(a);
  res = vadd_f32(v.val[0], v.val[1]);
  vst1_f32(a, res);
}