set StealRegisterReserveCount to 2 to avoid running out of registers in when shuffling values around on the stack

This commit is contained in:
Joel Dice 2009-03-16 18:00:51 -06:00
parent 90cbfc12cb
commit f5c79355f2

View File

@ -28,7 +28,7 @@ const bool DebugBuddies = false;
const int AnyFrameIndex = -2;
const int NoFrameIndex = -1;
const unsigned StealRegisterReserveCount = 1;
const unsigned StealRegisterReserveCount = 2;
const unsigned ResolveRegisterReserveCount = 2;
class Context;