aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/pr94134.c
blob: b1b44c3b184d851e4ffd6f7e3007a05ad6d55e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR target/94134 */

static volatile int a = 0;
static volatile int b = 1;

int
main ()
{
  a++;
  b++;
  if (a != 1 || b != 2)
    __builtin_abort ();
  return 0;
}