mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
PPU/LLVM: Fix MTOCRF instruction
This commit is contained in:
parent
fc3314ea96
commit
09347ba92a
1 changed files with 1 additions and 1 deletions
|
@ -2667,7 +2667,7 @@ void Compiler::MTOCRF(u32 l, u32 crm, u32 rs) {
|
|||
}
|
||||
}
|
||||
|
||||
cr_i32 = m_ir_builder->CreateAnd(cr_i32, ~mask);
|
||||
cr_i32 = m_ir_builder->CreateAnd(cr_i32, mask);
|
||||
rs_i32 = m_ir_builder->CreateAnd(rs_i32, ~mask);
|
||||
cr_i32 = m_ir_builder->CreateOr(cr_i32, rs_i32);
|
||||
SetCr(cr_i32);
|
||||
|
|
Loading…
Add table
Reference in a new issue