OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr35771.h] - Rev 300

Go to most recent revision | Compare with Previous | Blame | View Log

typedef TYPE __attribute__((aligned(1))) unaligned;
 
extern void abort (void);
 
 
TYPE  __attribute__((noinline))
foo (TYPE a1, TYPE a2, TYPE a3, TYPE a4,
     TYPE a5, TYPE a6, TYPE a7, TYPE a8,
     int b1, int b2, int b3, int b4, int b5, int b6, int b7, unaligned y)
{
  return y;
}
 
void
do_test (void)
{
  unaligned x;
  TYPE y = { 0 };
  x = y; 
  y = foo (y, y, y, y, y, y, y, y, 1, 2, 3, 4, 5, 6, -1, x);
  if (__builtin_memcmp (&y, &x, sizeof (y)) != 0)
    abort ();
}
 
int
main (void)
{
  do_test ();
  return 0;
}
 

Go to most recent revision | 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.