From 3f730548b1e5fee57b451058668f21f01c0538df Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Tue, 6 Nov 2012 19:33:56 +0100 Subject: [PATCH] Another vcmp condition code --- Core/MIPS/MIPSIntVFPU.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/MIPS/MIPSIntVFPU.cpp b/Core/MIPS/MIPSIntVFPU.cpp index bdf0016d1d..2656892771 100644 --- a/Core/MIPS/MIPSIntVFPU.cpp +++ b/Core/MIPS/MIPSIntVFPU.cpp @@ -1043,6 +1043,7 @@ namespace MIPSInt int c; switch (cond) { + case VC_EQ: c = s[i] == t[i]; break; case VC_EZ: c = s[i] == 0.0f || s[i] == -0.0f; break; case VC_LT: c = s[i] < t[i]; break; case VC_LE: c = s[i] <= t[i]; break;