diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-26 23:42:37 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:33 +0200 |
commit | 8f3043c3cf6f6baa1d235e6789533fbf567d1c2d (patch) | |
tree | e9c017011fe7578f3b243d01badc7c8faa21da1b /src | |
parent | glasm: Remove unintentional '\n' on Undef32 (diff) | |
download | yuzu-8f3043c3cf6f6baa1d235e6789533fbf567d1c2d.tar yuzu-8f3043c3cf6f6baa1d235e6789533fbf567d1c2d.tar.gz yuzu-8f3043c3cf6f6baa1d235e6789533fbf567d1c2d.tar.bz2 yuzu-8f3043c3cf6f6baa1d235e6789533fbf567d1c2d.tar.lz yuzu-8f3043c3cf6f6baa1d235e6789533fbf567d1c2d.tar.xz yuzu-8f3043c3cf6f6baa1d235e6789533fbf567d1c2d.tar.zst yuzu-8f3043c3cf6f6baa1d235e6789533fbf567d1c2d.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp | 4 | ||||
-rw-r--r-- | src/shader_recompiler/frontend/ir/value.h | 13 |
2 files changed, 1 insertions, 16 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp b/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp index e6a880a36..95bcbd750 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp @@ -58,9 +58,7 @@ void EmitPhiMove(EmitContext& ctx, const IR::Value& phi_value, const IR::Value& } const Register phi_reg{ctx.reg_alloc.Consume(IR::Value{&phi})}; const Value eval_value{ctx.reg_alloc.Consume(value)}; - if (!value.IsImmediate() && IR::IsUndef(RegAlloc::AliasInst(*value.Inst()))) { - return; - } + if (phi_reg == eval_value) { return; } diff --git a/src/shader_recompiler/frontend/ir/value.h b/src/shader_recompiler/frontend/ir/value.h index 090cc1739..0c6bf684d 100644 --- a/src/shader_recompiler/frontend/ir/value.h +++ b/src/shader_recompiler/frontend/ir/value.h @@ -395,17 +395,4 @@ inline f64 Value::F64() const { return inst.GetOpcode() == Opcode::Phi; } -[[nodiscard]] inline bool IsUndef(const Inst& inst) { - switch (inst.GetOpcode()) { - case Opcode::UndefU1: - case Opcode::UndefU8: - case Opcode::UndefU16: - case Opcode::UndefU32: - case Opcode::UndefU64: - return true; - default: - return false; - } -} - } // namespace Shader::IR |