aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/atomic-param.c
blob: 1f2b12690fa549cd770e1989fc681cc38a313ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Test __atomic routines for invalid memory model errors. This only needs
   to be tested on a single size.  */
/* { dg-do compile } */
/* { dg-require-effective-target sync_int_long } */

int i;

int
main ()
{

  __atomic_exchange_n (&i, 1); /* { dg-error "too few arguments" } */
  __atomic_exchange_n (&i, 1, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); /* { dg-error "too many arguments" } */
}