URL
https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk
Subversion Repositories open8_urisc
[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [gold/] [testsuite/] [ifuncvar1.c] - Rev 163
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test global variable initialized to hidden STT_GNU_IFUNC symbol. */ int didit; extern void doit (void); void doit (void) { didit = 1; } void (*get_foo (void)) (void) __asm__ ("foo"); __asm__ (".type foo, %gnu_indirect_function"); __asm__ (".hidden foo"); void (*get_foo (void)) (void) { return &doit; }
Go to most recent revision | Compare with Previous | Blame | View Log