From 8fab3dc91b2a90f5faf09818cc5cae0d5b388561 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Thu, 30 Jun 2016 20:20:25 -0700 Subject: [PATCH] jit-ir: Allow 3x3 and 2x2 vmmov in IR. While this will generate a lot of FMovs, it should still be better than bailing to interp. --- Core/MIPS/IR/IRCompVFPU.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Core/MIPS/IR/IRCompVFPU.cpp b/Core/MIPS/IR/IRCompVFPU.cpp index 925660005..f3e677903 100644 --- a/Core/MIPS/IR/IRCompVFPU.cpp +++ b/Core/MIPS/IR/IRCompVFPU.cpp @@ -1013,9 +1013,6 @@ namespace MIPSComp { } MatrixSize sz = GetMtxSize(op); - if (sz != M_4x4) { - DISABLE; - } int n = GetMatrixSide(sz); u8 sregs[16], dregs[16];