]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr68907.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr68907.c
1 /* PR c/60195 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c11 -Wpedantic -Wall" } */
4
5 _Atomic int a;
6
7 void
8 fn (void)
9 {
10 ++a;
11 a++;
12 --a;
13 a--;
14 }