android_mt6572_jiabo/external/valgrind/VEX/switchback/test_simple.c
2025-09-05 16:56:03 +08:00

12 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);
}