URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [dll.c] - Rev 378
Go to most recent revision | 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 (); }
Go to most recent revision | Compare with Previous | Blame | View Log