aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/c.c
blob: 43a548496da4934786eff7a0c60bc4b3bdb615da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-additional-options "-std=gnu89" } */

foo (a, b)
     long long a, b;
{
  if (a & ~b)
    return 1;
  else
    return 0;
}

bar (a, b)
     long long a, b;
{
  if (a & ~b & ((long long) 87612378))
    return 1;
  else
    return 0;
}