blob: 74e67753dcb80932a5f264af20b1074ed4f565ed [file] [log] [blame]
/* { dg-additional-options "-std=gnu89" } */
int
foo (x, c)
int x;
{
return x >> 24 & 0xff;
}
bar (x)
{
return (int)(x & 0xfffff) << 13;
}