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 816
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); }