mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12: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);
|
rs_i32 = m_ir_builder->CreateAnd(rs_i32, ~mask);
|
||||||
cr_i32 = m_ir_builder->CreateOr(cr_i32, rs_i32);
|
cr_i32 = m_ir_builder->CreateOr(cr_i32, rs_i32);
|
||||||
SetCr(cr_i32);
|
SetCr(cr_i32);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue