aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/fold-condneg-2.c
blob: 1af24636ec764eedde843e4274e9bbb439aa3197 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O2 -ftrapv -fdump-tree-optimized" } */

#define INT_MIN  (-__INT_MAX__ - 1)

int test(int x)
{
  return x != INT_MIN ? -x : INT_MIN;
}

/* { dg-final { scan-tree-dump "goto" "optimized" } } */