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/] [pr31343.c] - Rev 338

Compare with Previous | Blame | View Log

/* { dg-do compile } */
 
#define N 16
 
struct
{
  unsigned int x;
  unsigned int y;
} pS [100];
 
void
main1 ()
{
  int i, j;
  unsigned int ub[N] =
    { 1, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45 };
  unsigned int uc[N] =
    { 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
  unsigned int udiffx, udiffy;
 
  for (i = 0; i < N; i++)
    {
      pS[i].x = 0;
      pS[i].y = 0;
      for (j = 0; j < N; j++)
      {
        udiffx = (ub[j] - uc[j]);
        udiffy = (ub[j] - uc[j]);
        pS[i].x = udiffx;
        pS[i].y = udiffy;
      }
    }
}
 
/* { dg-final { cleanup-tree-dump "vect" } } */
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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