aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/vect-simd-clone-10a.c
blob: c49473df112b903003bb35944c4f57cc06c13c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */

#include "vect-simd-clone-10.h"

#pragma omp declare simd notinbranch
int
foo (long int a, int b, int c)
{
  return a + b + c;
}

#pragma omp declare simd notinbranch
long int
bar (int a, int b, long int c)
{
  return a + b + c;
}

/* { dg-final { cleanup-tree-dump "vect" } } */