aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/pr59101.c
blob: ed6a7e8fa31927851440a6c0ea08a24a1892b14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR target/59101 */

__attribute__((noinline, noclone)) int
foo (int a)
{
  return (~a & 4102790424LL) > 0 | 6;
}

int
main ()
{
  if (foo (0) != 7)
    __builtin_abort ();
  return 0;
}