aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr80281.c
blob: bff4f6e60a8841542b9f3a7e7d7013c6cc833d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-run } */
/* { dg-require-effective-target int32plus } */

int
main ()
{
  volatile int a = 0;
  long long b = 2147483648LL;
  int c = a % 2;
  int x = ((int) -b + c) % -2147483647;
  if (x != -1)
    __builtin_abort ();
  return 0;
}