aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/move_qhi.c
blob: 9bc9cb6630cf0eb7caca43530921add787f691c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
move (a, b)
     char a, b;
{
  char s;
  s = a;
  if (s)
    gurka (s);
  foo (b, a);
  a = bar ();
  b = bar ();
  gra (s);
}