From bd3a03ad1d7511dc823ab57ef1e701cfa70dfbf8 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Tue, 19 Nov 2013 21:44:18 +0100 Subject: [PATCH] Quick buildfix. Last commit was meant to go on a WIP branch but meh :) --- Core/MIPS/ARM/ArmCompVFPU.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/MIPS/ARM/ArmCompVFPU.cpp b/Core/MIPS/ARM/ArmCompVFPU.cpp index 3623e7ca0b..c5801be680 100644 --- a/Core/MIPS/ARM/ArmCompVFPU.cpp +++ b/Core/MIPS/ARM/ArmCompVFPU.cpp @@ -38,7 +38,7 @@ // #define CONDITIONAL_DISABLE { fpr.ReleaseSpillLocks(); Comp_Generic(op); return; } #define CONDITIONAL_DISABLE ; #define DISABLE { fpr.ReleaseSpillLocksAndDiscardTemps(); Comp_Generic(op); return; } -#define NEON_IF_AVAILABLE(func) { if (jo.useNEONVFPU) { func(); return; } } +#define NEON_IF_AVAILABLE(func) { if (jo.useNEONVFPU) { func(op); return; } } #define _RS MIPS_GET_RS(op) #define _RT MIPS_GET_RT(op) #define _RD MIPS_GET_RD(op) @@ -943,7 +943,7 @@ namespace MIPSComp } void Jit::Comp_Vh2f(MIPSOpcode op) { - NEON_IF_AVAILABLE(CompNEON_Vh2f(op)) + NEON_IF_AVAILABLE(CompNEON_Vh2f); CONDITIONAL_DISABLE; if (js.HasUnknownPrefix()) { DISABLE;