URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [lto/] [20090210_1.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "-fPIC" { target { ! sparc*-*-* } } } */ static void f (int n) { int i; static int __thread value = 100; for (i = 0; i < n; ++i) { volatile int *p = &value; volatile int x __attribute__ ((unused)) = *p; } } extern int foo (int); int main (int argc, char **argv) { f (foo (4) + argc); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log