aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/pr55771.c
blob: 16f02442c111b7a997cb9c22783bbbb6098a9dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do run } */

float global;
int main()
{
  unsigned long z = 1;
  float x = -z;
  global = x;
  if (global < 0)
    __builtin_abort ();
  return 0;
}