aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/simd-8.c
blob: 5bc8637c86b0a1d87e184521688bab87c9d6f3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-w -Wno-psabi" } */

#if __SIZEOF_LONG_DOUBLE__ == 16 || __SIZEOF_LONG_DOUBLE__ == 8
typedef long double a __attribute__((vector_size (32)));

a __attribute__((noinline))
sum (a first, a second)
{
    return first + second;
}

a
foo (a x, a y, a z)
{
  return sum (x, y) + z;
}
#else
int main() {}
#endif