aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/shand.c
blob: 74e67753dcb80932a5f264af20b1074ed4f565ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-additional-options "-std=gnu89" } */

int
foo (x, c)
     int x;
{
  return x >> 24 & 0xff;
}

bar (x)
{
  return (int)(x & 0xfffff) << 13;
}