fix regression in push instruction on amd64

This commit is contained in:
Joel Dice 2007-12-20 16:47:01 -07:00
parent 06109792e5
commit e58972a968

View File

@ -1122,7 +1122,7 @@ RegisterOperand::apply(Context* c, Operation operation)
break;
case push:
if (selection == DefaultSelection) {
if (selection == DefaultSelection or selection == S4Selection) {
c->code.append(0x50 | value(c));
} else {
switch (selection) {