Sign in
gnu
/
gcc.git
/
94edbc153ae4f1c1532859836e528fc480da82d6
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
dshift.c
blob: 3257bd82094d947f8544e3cf0ae1698a54a21136 [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
foo
(
b
,
c
)
unsigned
b
,
c
;
{
return
(
b
<<
12
)
|
(
c
>>
20
);
}
main
()
{
printf
(
"0x%x\n"
,
foo
(
0x11223344
,
0xaabbccdd
));
}