summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/vect/pr33860a.cc
blob: 77e28226a441a2c68a9d71e3acccf38a453572fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { dg-do compile } */
/* { dg-options "-Wno-psabi" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */

/* Testcase by Martin Michlmayr <tbm@cyrius.com> */

class Matrix
{
  public:
    float data[4][4] __attribute__ ((__aligned__(16)));
    Matrix operator* (const Matrix matrix) const;
    void makeRotationAboutVector (void);
};
void Matrix::makeRotationAboutVector (void)
{
   Matrix irx;
   *this = irx * (*this);
}
Matrix Matrix::operator* (const Matrix matrix) const
{
  Matrix ret;
  for (int i = 0; i < 4; i++)
    for (int j = 0; j < 4; j++)
      ret.data[j][i] = matrix.data[j][2] + matrix.data[j][3];
  return ret;
}

/* { dg-final { cleanup-tree-dump "vect" } } */