summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/charmtst.c
blob: 2945f198e5e2f2e4fc0e6f4789d0049a4611ddbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
c_move_tst (char b)
{
  char a;

  a = b;
  b = 'b';
  foo (a);
  foo (b);
  foo (a);
  bar (a, b);
  b = a;
  if (b == 0)
    a++;
  return a + b;
}