Cerion Armour-Brown dc40e0565c handy test wrapper
git-svn-id: svn://svn.valgrind.org/vex/trunk@1050
2005-03-17 13:01:08 +00:00

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