aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/970206-1.c
blob: 95196cd6a54e6b78500e50a7e0dd35fcf37dc256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct Rect
{
  int iA;
  int iB;
  int iC;
  int iD;
};

void
f (int * const this, struct Rect arect)
{
  g (*this, arect);
}