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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20020525-1.c] - Rev 823

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

/* PR optimization/6703
   Origin: Glen Nakamura <glen@imodulo.com> */
/* { dg-do run } */
/* { dg-options "-O2" } */
 
extern void abort (void);
extern void exit (int);
 
void foo (int *x, int y)
{
  __builtin_memset (x, 0, y);
}
 
int main ()
{
  int x[2] = { -1, -1 };
 
  if (x[1] != -1)
    abort ();
  foo (x, sizeof (int) + 1);
  if (x[1] == -1)
    abort ();
  exit (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.