summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorSoren Jorvang <soren.jorvang@gmail.com>2011-01-09 15:20:35 +0000
committerSoren Jorvang <soren.jorvang@gmail.com>2011-01-09 15:20:35 +0000
commite6c87cbe3dec3e5638415dbbd5da601fc840fde4 (patch)
treee2b24478d583d92d61e5d3a2ce0b0503bc960a9e /Source/Core
parentd47d2a05d23a569c0e99bda101d8f9139e284790 (diff)
Oops.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6795 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/PowerPC/JitCommon/JitAsmCommon.cpp5
1 files 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!)