aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/log2.c
blob: c24520faaedb332e697a6aa588479abb3707fa72 (plain)
1
2
3
4
5
6
7
8
/* { dg-additional-options "-std=gnu89" } */

log2 (a, b)
{
  int c;
  c = ~(~a & ~b);
  return c;
}