Explorar o código

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

ReinUsesLisp %!s(int64=5) %!d(string=hai) anos
pai
achega
b6c087496b
Modificáronse 1 ficheiros con 1 adicións e 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 ...;
     }
 }