Julian Seward 6115012787 Advance ppc32 to the point where we can hope to start the program.
git-svn-id: svn://svn.valgrind.org/vex/trunk@927
2005-02-17 18:07:56 +00:00

21 lines
286 B
C

static void bar ( void*(*service)(int,int) )
{
int i;
for (i = 0; i < 100000; i++) ;
service(1, 'h');
service(1, 'e');
service(1, 'l');
service(1, 'l');
service(1, 'o');
service(1, '\n');
}
void entry ( void*(*service)(int,int) )
{
bar(service);
service(0,0);
}