OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [vect-outer-2b.c] - Diff between revs 298 and 338

Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 338
/* { dg-require-effective-target vect_float } */
/* { dg-require-effective-target vect_float } */
#include <stdarg.h>
#include <stdarg.h>
#include "tree-vect.h"
#include "tree-vect.h"
 
 
#define N 40
#define N 40
float image[2*N][N][N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
float image[2*N][N][N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
 
 
__attribute__ ((noinline)) void
__attribute__ ((noinline)) void
foo (){
foo (){
  int i,j,k;
  int i,j,k;
 
 
 for (k=0; k<N; k++) {
 for (k=0; k<N; k++) {
  for (i = 0; i < N; i++) {
  for (i = 0; i < N; i++) {
    for (j = 0; j < N; j++) {
    for (j = 0; j < N; j++) {
      image[k+i][j][i] = j+i+k;
      image[k+i][j][i] = j+i+k;
    }
    }
  }
  }
 }
 }
}
}
 
 
int main (void)
int main (void)
{
{
  check_vect ();
  check_vect ();
  int i, j, k;
  int i, j, k;
 
 
  foo ();
  foo ();
 
 
 for (k=0; k<N; k++) {
 for (k=0; k<N; k++) {
  for (i = 0; i < N; i++) {
  for (i = 0; i < N; i++) {
    for (j = 0; j < N; j++) {
    for (j = 0; j < N; j++) {
      if (image[k+i][j][i] != j+i+k)
      if (image[k+i][j][i] != j+i+k)
        abort ();
        abort ();
    }
    }
  }
  }
 }
 }
 
 
  return 0;
  return 0;
}
}
 
 
/* { dg-final { scan-tree-dump-times "strided access in outer loop." 1 "vect" } } */
/* { dg-final { scan-tree-dump-times "strided access in outer loop." 1 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.