URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr40792.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/40792 */ /* { dg-do compile } */ /* { dg-options "-O3" } */ void foo (int, char *, int *); void bar (int *a, int *b, ...) { int c; char d[256]; foo (*b, d, &c); } static int a, b; void baz (int c) { bar (&a, &b); }
Go to most recent revision | Compare with Previous | Blame | View Log