view gcc/testsuite/gcc.c-torture/compile/dshift.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

foo (b, c)
     unsigned b, c;
{
  return (b << 12) | (c >> 20);
}

main ()
{
  printf ("0x%x\n", foo (0x11223344, 0xaabbccdd));
}