diff options
| author | Fiora <fioraaeterna@gmail.com> | 2014-12-02 10:16:35 -0800 |
|---|---|---|
| committer | Fiora <fioraaeterna@gmail.com> | 2014-12-02 10:17:58 -0800 |
| commit | 863fb91caded505114e38113b8c35645f2bd4f50 (patch) | |
| tree | 90f00c3dcce26a4a14d4a55bb44f3234ce9f84e8 /Source/Core | |
| parent | 54f1e3a3c148d36e694d8bb08d282225bdcb3440 (diff) | |
JIT: fix profiler call
Sometimes this seems to require a 64-bit offset, so use CallFunction instead
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/Profiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) \ |
