From 863fb91caded505114e38113b8c35645f2bd4f50 Mon Sep 17 00:00:00 2001 From: Fiora Date: Tue, 2 Dec 2014 10:16:35 -0800 Subject: [PATCH] JIT: fix profiler call Sometimes this seems to require a 64-bit offset, so use CallFunction instead --- Source/Core/Core/PowerPC/Profiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Profiler.h b/Source/Core/Core/PowerPC/Profiler.h index c7c3fe9c03..e9908d1994 100644 --- a/Source/Core/Core/PowerPC/Profiler.h +++ b/Source/Core/Core/PowerPC/Profiler.h @@ -16,7 +16,7 @@ #define PROFILER_QUERY_PERFORMANCE_COUNTER(pt) \ MOV(64, R(ABI_PARAM1), Imm64((u64) pt)); \ - CALL((const void*) QueryPerformanceCounter) + ABI_CallFunction((const void*) QueryPerformanceCounter) // block->ticCounter += block->ticStop - block->ticStart #define PROFILER_UPDATE_TIME(block) \