921e5a0eb4
From-SVN: r14840
15 lines
146 B
C
15 lines
146 B
C
|
|
#define S 31
|
|
#define A 17
|
|
|
|
foo (a)
|
|
unsigned a;
|
|
{
|
|
return (a >> S) & ((1 << A) - 1);
|
|
}
|
|
|
|
main ()
|
|
{
|
|
printf ("%d%d\n", foo (-1), foo (0));
|
|
}
|