aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/961019-1.c
blob: 0ea6ec6e280ae3c22a2f6477e3d40f05e9e48603 (plain)
1
2
3
4
5
6
7
8
9
10
11
char _hex_value[256];

void
hex_init ()
{
  int i;
  for (i = 0; i < 256; i++)
    _hex_value[i] = 99;
  for (i = 0; i < 10; i++)
    _hex_value['0' + i] = i;
}