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.c-torture/] [compile/] [dll.c] - Rev 297
Compare with Previous | Blame | View Log
/* { dg-require-dll "" } */ __declspec (dllimport) int foo; extern int (* import) (void) __attribute__((dllimport)); int func2 (void) __attribute__((dllexport)); __declspec(dllexport) int func1 (int a) { return a + foo; } static int internal (void) { return 77; } int func2 (void) { return import (); }