blob: 36d3620179e6860b4574433447374e9120b2d0f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* { dg-do run } */
/* { dg-require-effective-target int32plus } */
int main ()
{
int a = 2;
int b = 1;
int t = -1 * ( -0x40000000 * a / ( -0x20000000 + b ) ) / -1;
if (t != 4) __builtin_abort();
return 0;
}
|