Explorar el Código

glasm: Reduce reg allocation leaks from an exception to a log

ReinUsesLisp hace 5 años
padre
commit
b6c087496b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/shader_recompiler/backend/glasm/emit_glasm.cpp

+ 1 - 1
src/shader_recompiler/backend/glasm/emit_glasm.cpp

@@ -253,7 +253,7 @@ void EmitCode(EmitContext& ctx, const IR::Program& program) {
         }
     }
     if (!ctx.reg_alloc.IsEmpty()) {
-        throw LogicError("Register allocator is not empty");
+        // LOG_WARNING ...;
     }
 }