mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
13 lines
180 B
C
13 lines
180 B
C
|
|
|
|
static void bar ( void*(*service)(int,int) )
|
|
{
|
|
__asm__ __volatile__ ("addi 17, 14, 5");
|
|
}
|
|
|
|
void entry ( void*(*service)(int,int) )
|
|
{
|
|
bar(service);
|
|
service(0,0);
|
|
}
|