summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr39867.c
blob: fbe09241cbdc37f0ee9ecd4035215f824e95aabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do link } */
/* { dg-options "-O2" } */

extern void link_error (void);

int main (void)
{
  int exp = -1;
  /* Wrong folding of the LHS to an unsigned MAX leads to 4294967295 != 2.  */
  if ((exp < 2 ? 2U : (unsigned int) exp) != 2)
    link_error ();
  return 0;
}