URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [attr-ifunc-1.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-require-ifunc "" } */ /* { dg-options "" } */ #include <stdio.h> static int implementation (void) { printf ("'ere I am JH\n"); return 0; } static void *resolver (void) { return (void *)implementation; } extern int magic (void) __attribute__ ((ifunc ("resolver"))); int main () { return magic () != 0; }