mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-17 17:05:02 +00:00
shader_recompiler: redundant IR opcode removed
This commit is contained in:
parent
9227a2b868
commit
0212e68752
6 changed files with 1 additions and 12 deletions
|
@ -195,7 +195,7 @@ void Translator::V_MAX_F32(const GcnInst& inst) {
|
|||
|
||||
void Translator::V_RSQ_F32(const GcnInst& inst) {
|
||||
const IR::F32 src0{GetSrc(inst.src[0], true)};
|
||||
SetDst(inst.dst[0], ir.FPInvSqrt(src0));
|
||||
SetDst(inst.dst[0], ir.FPRecipSqrt(src0));
|
||||
}
|
||||
|
||||
} // namespace Shader::Gcn
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue