Skip to content

Commit

Permalink
Fix for MRP-5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Rogers committed May 16, 2009
1 parent d4b64bc commit bd92ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rvm/src/org/jikesrvm/jni/ia32/JNICompiler.java
Expand Up @@ -273,7 +273,7 @@ public static synchronized CompiledMethod compile(NativeMethod method) {
if (SSE2_FULL) {
asm.emitMOVSD_RegInd_Reg(SP, (XMM)PARAMETER_FPRS[argFpr]);
} else {
asm.emitFSTP_RegInd_Reg_Quad(SP, (FPR)PARAMETER_FPRS[argFpr]);
asm.emitFSTP_RegInd_Reg_Quad(SP, FP0);
}
} else {
asm.emitPUSH_RegDisp(EBP, currentArg.plus(WORDSIZE));
Expand All @@ -285,7 +285,7 @@ public static synchronized CompiledMethod compile(NativeMethod method) {
if (SSE2_FULL) {
asm.emitMOVSD_RegInd_Reg(SP, (XMM)PARAMETER_FPRS[argFpr]);
} else {
asm.emitFSTP_RegInd_Reg_Quad(SP, (FPR)PARAMETER_FPRS[argFpr]);
asm.emitFSTP_RegInd_Reg_Quad(SP, FP0);
}
} else {
asm.emitPUSH_RegDisp(EBP, currentArg);
Expand Down

0 comments on commit bd92ad8

Please sign in to comment.