Merge branch 'master' into ptr

This commit is contained in:
Elad 2025-11-27 02:08:55 +02:00 committed by GitHub
commit ae84c944f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,6 +112,7 @@ namespace rsx::assembler
src1.HEX = decoded._u32[2];
src2.HEX = decoded._u32[3];
end = !!dst.end;
const u32 opcode = dst.opcode | (src1.opcode_is_branch << 6);
if (opcode == RSX_FP_OPCODE_NOP)
@ -120,8 +121,6 @@ namespace rsx::assembler
continue;
}
end = !!dst.end;
bb->instructions.push_back({});
auto& ir_inst = bb->instructions.back();
std::memcpy(ir_inst.bytecode, &decoded._u32[0], 16);