modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/931110-2.c (about) 1 main () 2 { 3 static int a[] = {3, 4}; 4 register int *b; 5 int c; 6 7 b = a; 8 c = *b++ % 8; 9 if (c != 3) 10 abort (); 11 exit (0); 12 }