Remove implicit write of PC in case of a write to RA in UnwindAssemblyInstEmulation
Previously the calculated location of PC is changed in case of a write
to RA inside UnwindAssemblyInstEmulation::WriteRegister. It caused an
issue on arm because RA can be used as a general purpose register so a
register load to RA don't mean the function will return to the given
address. The value (location) of PC should be updated explicitly by the
instruction emulator when an instruction writes to it.