m.addInstr(new LABEL_Instr(dummyRescueBlockLabel));
m.addInstr(new RECV_EXCEPTION_Instr(exc));
m.addInstr(new SET_RETADDR_Instr(ebi.returnAddr, rethrowExcLabel));
m.addInstr(new JumpInstr(ebi.start));
m.addInstr(new LABEL_Instr(rethrowExcLabel));
m.addInstr(new THROW_EXCEPTION_Instr(exc));
// End label for the exception region
m.addInstr(new LABEL_Instr(rEndLabel));
return rv;