aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr38934.c
blob: c05742c5baa75716bd3ee2297f1d31b9236da65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* PR middle-end/38934 */
/* { dg-do compile } */
/* { dg-options "-O2 -std=gnu99 -w" } */

/* This variable needed only to work around earlier optimizations than VRP.  */
unsigned char g;

extern void abort ();

void
f (long long int p)
{
  g = 255;
  if (p >= -9223372036854775808LL - (signed char) g)
    p = 1;

  if (p)
    abort ();
}