forked from ShuriZma/suyu
1
0
Fork 0

Merge pull request #1754 from ReinUsesLisp/zero-register

gl_shader_decompiler: Remove UNREACHABLE when setting RZ
This commit is contained in:
bunnei 2018-11-21 08:06:29 -08:00 committed by GitHub
commit bb175ab430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -761,8 +761,7 @@ private:
u64 dest_num_components, u64 value_num_components, u64 dest_elem,
bool precise) {
if (reg == Register::ZeroIndex) {
LOG_CRITICAL(HW_GPU, "Cannot set Register::ZeroIndex");
UNREACHABLE();
// Setting RZ is a nop in hardware.
return;
}