re PR rtl-optimization/57568 (wrong code for assignment in conditional at -Os)
[gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr57568.c
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 }