view gcc/testsuite/gcc.dg/vect/pr69652.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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];
      }
}