view gcc/testsuite/g++.dg/torture/20100702-1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile }
// { dg-options "-fprefetch-loop-arrays -w" }

class ggPoint3 {
public:
    ggPoint3();
    inline double &x() {
	return e[0];
    }
    inline double &y() {
	return e[1];
    }
    ggPoint3(const ggPoint3 &p);
    double e[3];
};
class ggBox3 {
public:
    ggPoint3 min() const;
};
class ggHAffineMatrix3;
ggPoint3 operator*(const ggHAffineMatrix3 &m, const ggPoint3 &v);
void foo (ggPoint3 *);
void SetMatrix(ggHAffineMatrix3& toworld, ggBox3& box)
{
  ggPoint3 p[2][2][2];
  int i, j, k;
  for (i = 0; i < 2; j++)
    for (k = 0; k < 2; k++)
      {
	if (i == 0)
	  p[i][j][k].x() = box.min().x();
	if (j == 0)
	  p[i][j][k].y() = box.min().y();
	p[i][j][k] = toworld * p[i][j][k];
      }
  foo (&p[0][0][0]);
}