mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 17:34:52 +00:00
more clang fix
This commit is contained in:
parent
11a3906243
commit
32225f4a8b
1 changed files with 2 additions and 2 deletions
|
@ -474,8 +474,8 @@ void Translator::V_BFI_B32(const GcnInst& inst) {
|
||||||
const IR::U32 src0{GetSrc(inst.src[0])};
|
const IR::U32 src0{GetSrc(inst.src[0])};
|
||||||
const IR::U32 src1{GetSrc(inst.src[1])};
|
const IR::U32 src1{GetSrc(inst.src[1])};
|
||||||
const IR::U32 src2{GetSrc(inst.src[2])};
|
const IR::U32 src2{GetSrc(inst.src[2])};
|
||||||
SetDst(inst.dst[0], ir.BitwiseOr(ir.BitwiseAnd(src0, src1),
|
SetDst(inst.dst[0],
|
||||||
ir.BitwiseAnd(ir.BitwiseNot(src0), src2)));
|
ir.BitwiseOr(ir.BitwiseAnd(src0, src1), ir.BitwiseAnd(ir.BitwiseNot(src0), src2)));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Shader::Gcn
|
} // namespace Shader::Gcn
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue