aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr63761.c
blob: 5cda3f1bd8bab928ac9e4a320ab4c344442f0127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}