From e6c87cbe3dec3e5638415dbbd5da601fc840fde4 Mon Sep 17 00:00:00 2001 From: Soren Jorvang Date: Sun, 9 Jan 2011 15:20:35 +0000 Subject: [PATCH] Oops. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6795 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/PowerPC/JitCommon/JitAsmCommon.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Src/PowerPC/JitCommon/JitAsmCommon.cpp b/Source/Core/Core/Src/PowerPC/JitCommon/JitAsmCommon.cpp index 7001268253..62ca076844 100644 --- a/Source/Core/Core/Src/PowerPC/JitCommon/JitAsmCommon.cpp +++ b/Source/Core/Core/Src/PowerPC/JitCommon/JitAsmCommon.cpp @@ -35,7 +35,6 @@ using namespace Gen; - void CommonAsmRoutines::GenFifoWrite(int size) { // Assume value in ABI_PARAM1 @@ -58,9 +57,10 @@ void CommonAsmRoutines::GenFifoWrite(int size) POP(ESI); RET(); } + void CommonAsmRoutines::GenFifoFloatWrite() { - int temp32; + static int temp32; // Assume value in XMM0 PUSH(ESI); @@ -77,6 +77,7 @@ void CommonAsmRoutines::GenFifoFloatWrite() POP(ESI); RET(); } + void CommonAsmRoutines::GenFifoXmm64Write() { // Assume value in XMM0. Assume pre-byteswapped (unlike the others here!)