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

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

int a, b;
short c;

void fn1 ();

void
fn2 (unsigned short p1)
{
  int d;

  c = p1 >> 8 | p1 << 8;
  d = b;
  if (d)
    fn1 ();
  a = d >> 8 & 0x00FF
    | d << 8 & 0xFF00;
}