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

foo (a)
{
  int b = 0x1fff;
  return a & ~b;
}