From ab8f4fdfc73d5c52f24bd805ed2e5344c3d9f3f8 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Mon, 16 Mar 2026 20:45:43 +0200 Subject: [PATCH] exec is not permitted --- src/shader_recompiler/frontend/translate/vector_alu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shader_recompiler/frontend/translate/vector_alu.cpp b/src/shader_recompiler/frontend/translate/vector_alu.cpp index 720dd2e27..76456df13 100644 --- a/src/shader_recompiler/frontend/translate/vector_alu.cpp +++ b/src/shader_recompiler/frontend/translate/vector_alu.cpp @@ -1219,7 +1219,7 @@ void Translator::V_CMP_U64(ConditionOp op, bool is_signed, bool set_exec, const UNREACHABLE_MSG("V_CMP_U64 with signed integers is not supported"); } if (set_exec) { - ir.SetExec(result); + UNREACHABLE_MSG("Exec setting for V_CMP_U64 is not supported"); } switch (inst.dst[1].field) {