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/] [g++.dg/] [eh/] [simd-3.C] - Diff between revs 301 and 338

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

Rev 301 Rev 338
// { dg-options "-O" }
// { dg-options "-O" }
// { dg-options "-O -maltivec" { target { powerpc*-*-darwin* && powerpc_altivec_ok } } }
// { dg-options "-O -maltivec" { target { powerpc*-*-darwin* && powerpc_altivec_ok } } }
// { dg-do run }
// { dg-do run }
#include 
#include 
#include 
#include 
typedef int __attribute__((vector_size(16))) v;
typedef int __attribute__((vector_size(16))) v;
v vv[32];
v vv[32];
volatile v vt = { 1, 2, 3, 4 };
volatile v vt = { 1, 2, 3, 4 };
void clobber_vrs(void) { };
void clobber_vrs(void) { };
void (*volatile fp)() = clobber_vrs;
void (*volatile fp)() = clobber_vrs;
void thrower(void)
void thrower(void)
{
{
  v v00 = vv[ 0];
  v v00 = vv[ 0];
  v v01 = vv[ 1];
  v v01 = vv[ 1];
  v v02 = vv[ 2];
  v v02 = vv[ 2];
  v v03 = vv[ 3];
  v v03 = vv[ 3];
  v v04 = vv[ 4];
  v v04 = vv[ 4];
  v v05 = vv[ 5];
  v v05 = vv[ 5];
  v v06 = vv[ 6];
  v v06 = vv[ 6];
  v v07 = vv[ 7];
  v v07 = vv[ 7];
  v v08 = vv[ 8];
  v v08 = vv[ 8];
  v v09 = vv[ 9];
  v v09 = vv[ 9];
  v v10 = vv[10];
  v v10 = vv[10];
  v v11 = vv[11];
  v v11 = vv[11];
  v v12 = vv[12];
  v v12 = vv[12];
  fp();
  fp();
  vv[ 0] = v00;
  vv[ 0] = v00;
  vv[ 1] = v01;
  vv[ 1] = v01;
  vv[ 2] = v02;
  vv[ 2] = v02;
  vv[ 3] = v03;
  vv[ 3] = v03;
  vv[ 4] = v04;
  vv[ 4] = v04;
  vv[ 5] = v05;
  vv[ 5] = v05;
  vv[ 6] = v06;
  vv[ 6] = v06;
  vv[ 7] = v07;
  vv[ 7] = v07;
  vv[ 8] = v08;
  vv[ 8] = v08;
  vv[ 9] = v09;
  vv[ 9] = v09;
  vv[10] = v10;
  vv[10] = v10;
  vv[11] = v11;
  vv[11] = v11;
  vv[12] = v12;
  vv[12] = v12;
  throw 3;
  throw 3;
}
}
v v2;
v v2;
int main(void)
int main(void)
{
{
  v v1 = vt;
  v v1 = vt;
  try {
  try {
    thrower();
    thrower();
  } catch (int x) {
  } catch (int x) {
  }
  }
  v2 = v1;
  v2 = v1;
  if (memcmp (&v2, (v *)&vt, sizeof (v2)) != 0)
  if (memcmp (&v2, (v *)&vt, sizeof (v2)) != 0)
    abort ();
    abort ();
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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