aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr69652.c
blob: 29fe28c5c7a4feb2268b844f70f63e269eeea550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-additional-options "-ffast-math" } */
/* { dg-additional-options "-mavx" { target { i?86-*-* x86_64-*-* } } } */

void fn1(double **matrix, int column, int row, int n)
{
  int k;
  for (k = 0; k < n; k++)
    if (matrix[row][k] != matrix[column][k])
      {
	matrix[column][k] = -matrix[column][k];
	matrix[row][k] = matrix[row][k] - matrix[column][k];
      }
}