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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgomp/] [testsuite/] [libgomp.c++/] [reduction-4.C] - Rev 735

Compare with Previous | Blame | View Log

// { dg-do run }

extern "C" void abort (void);

template <typename I, typename F>
void
foo ()
{
  I j = -10000;
  F f = 1024.0;
  int i;
  #pragma omp parallel for reduction (min:f) reduction (max:j)
    for (i = 0; i < 4; i++)
      switch (i)
        {
        case 0:
          if (j < -16) j = -16; break;
        case 1:
          if (f > -2.0) f = -2.0; break;
        case 2:
          if (j < 8) j = 8; if (f > 9.0) f = 9.0; break;
        case 3:
          break;
        }
  if (j != 8 || f != -2.0)
    abort ();
}

int
main ()
{
  int j = -10000;
  float f = 1024.0;
  int i;
  #pragma omp parallel for reduction (min:f) reduction (max:j)
    for (i = 0; i < 4; i++)
      switch (i)
        {
        case 0:
          if (j < -16) j = -16; break;
        case 1:
          if (f > -2.0) f = -2.0; break;
        case 2:
          if (j < 8) j = 8; if (f > 9.0) f = 9.0; break;
        case 3:
          break;
        }
  if (j != 8 || f != -2.0)
    abort ();
  foo <int, float> ();
  foo <long, double> ();
  foo <long long, long double> ();
  return 0;
}

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.