fix amd64 regression in PushEvent::skipMove

This commit is contained in:
Joel Dice 2008-04-29 09:30:41 -06:00
parent c96f44d77d
commit 22382a5c8b

View File

@ -994,7 +994,7 @@ class PushEvent: public Event {
}
virtual bool skipMove(unsigned size) {
return active and size >= 4;
return active and size >= BytesPerWord;
}
Stack* s;