A32/ir_emitter: Bug fix: IREmitter::ExceptionRaised using incorrect opcode
This commit is contained in:
parent
ff3805e332
commit
5fc197c564
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ void IREmitter::CallSupervisor(const IR::U32& value) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void IREmitter::ExceptionRaised(const Exception exception) {
|
void IREmitter::ExceptionRaised(const Exception exception) {
|
||||||
Inst(Opcode::A64ExceptionRaised, Imm32(PC()), Imm64(static_cast<u64>(exception)));
|
Inst(Opcode::A32ExceptionRaised, Imm32(PC()), Imm64(static_cast<u64>(exception)));
|
||||||
}
|
}
|
||||||
|
|
||||||
IR::U32 IREmitter::GetCpsr() {
|
IR::U32 IREmitter::GetCpsr() {
|
||||||
|
|
Loading…
Reference in a new issue