mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-10-31 20:37:52 +00:00
shader: Apply sign bit in FCMP (imm)
This commit is contained in:
parent
3db2b3effa
commit
c9337a4ae4
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ void TranslatorVisitor::FCMP_imm(u64 insn) {
|
||||||
const u32 sign_bit{fcmp.is_negative != 0 ? (1U << 31) : 0};
|
const u32 sign_bit{fcmp.is_negative != 0 ? (1U << 31) : 0};
|
||||||
const u32 value{static_cast<u32>(fcmp.value) << 12};
|
const u32 value{static_cast<u32>(fcmp.value) << 12};
|
||||||
|
|
||||||
FCMP(*this, insn, ir.Imm32(value), GetFloatReg39(insn));
|
FCMP(*this, insn, ir.Imm32(value | sign_bit), GetFloatReg39(insn));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Shader::Maxwell
|
} // namespace Shader::Maxwell
|
||||||
|
|
Loading…
Reference in a new issue