Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr78305.c
blobccb8c6faa78e24e68645fafb37b17ecf739c1ea3
1 /* { dg-require-effective-target int32plus } */
2 /* { dg-do run } */
4 int main ()
6 int a = 2;
7 int b = 1;
9 int t = -1 * ( -0x40000000 * a / ( -0x20000000 + b ) ) / -1;
11 if (t != 4) __builtin_abort();
13 return 0;