aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/930109-1.c
blob: dbd15a1bd0a1c05c5b5ff64b5507ed194b8798a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
f(x)
     unsigned x;
{
  static short c;
  return x>>c;
}
g(x)
     unsigned x;
{
  static char c;
  return x>>c;
}