From: Julian Seward Date: Wed, 20 Oct 2004 18:38:07 +0000 (+0000) Subject: Oops! Further update spill slot offsets following add of X-Git-Tag: svn/VALGRIND_3_0_1^2~943 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da1082edfb9c2a3511b9e5de32072721142357d7;p=thirdparty%2Fvalgrind.git Oops! Further update spill slot offsets following add of x86 guest segment registers. TODO: SANELY. git-svn-id: svn://svn.valgrind.org/vex/trunk@391 --- diff --git a/VEX/priv/host-x86/hdefs.c b/VEX/priv/host-x86/hdefs.c index cdd26e6703..382c7f51f1 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 * 34; + Int base = 4 * 37; 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 * 34; + Int base = 4 * 37; vassert(offset >= 0); vassert(offset <= 4*(100-1)); vassert(!hregIsVirtual(rreg));