From: Julian Seward Date: Wed, 20 Oct 2004 01:13:02 +0000 (+0000) Subject: Temporary kludge to locate spill slots on cvs head. TODO: better X-Git-Tag: svn/VALGRIND_3_0_1^2~958 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7bd11cc3ece53a2f6e22d7e9ddcf8a4cbe2c331d;p=thirdparty%2Fvalgrind.git Temporary kludge to locate spill slots on cvs head. TODO: better git-svn-id: svn://svn.valgrind.org/vex/trunk@376 --- diff --git a/VEX/priv/host-x86/hdefs.c b/VEX/priv/host-x86/hdefs.c index c79e490c2b..cdd26e6703 100644 --- a/VEX/priv/host-x86/hdefs.c +++ b/VEX/priv/host-x86/hdefs.c @@ -1080,7 +1080,7 @@ Bool isMove_X86Instr ( X86Instr* i, HReg* src, HReg* dst ) X86Instr* genSpill_X86 ( HReg rreg, Int offset ) { X86AMode* am; - Int base = 4 * 55; + Int base = 4 * 34; vassert(offset >= 0); vassert(offset <= 4*(100-1)); vassert(!hregIsVirtual(rreg)); @@ -1100,7 +1100,7 @@ X86Instr* genSpill_X86 ( HReg rreg, Int offset ) X86Instr* genReload_X86 ( HReg rreg, Int offset ) { X86AMode* am; - Int base = 4 * 55; + Int base = 4 * 34; vassert(offset >= 0); vassert(offset <= 4*(100-1)); vassert(!hregIsVirtual(rreg));