]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/atomic-op-6.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / atomic-op-6.c
CommitLineData
14ba7b28
MP
1/* Test we don't generate bogus warnings. */
2/* PR c/69407 */
3/* { dg-do compile } */
4/* { dg-options "-Wall -Wextra" } */
5
6void
7foo (int *p, int a)
8{
9 __atomic_fetch_add (&p, a, 0); /* { dg-bogus "value computed is not used" } */
10 __atomic_add_fetch (&p, a, 0); /* { dg-bogus "value computed is not used" } */
11}