The compiler does not accept references to addresses that are relative to the program counter. For example, the following is not supported:
asm(b *+8);
Instead, use one of the following:
asm(b next);
asm(next:);
/* OR */
asm{
b next1
next1:
}
asm void functionLevel();
asm void functionLevel(){
b *+8
nop
blr
}