modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/pr57568.c (about) 1 /* PR target/57568 */ 2 3 extern void abort (void); 4 int a[6][9] = { }, b = 1, *c = &a[3][5]; 5 6 int 7 main () 8 { 9 if (b && (*c = *c + *c)) 10 abort (); 11 return 0; 12 }