Btw, if you just add

void *
retsp (void)
{
  register void *sp __asm ("sp");
  asm ("" : "+g" (sp));  // <-- this line
  return sp;
}

everything works fine.


Segher

Reply via email to