change mov to mov8 in return8

This commit is contained in:
Joel Dice 2008-01-10 15:41:57 -07:00
parent a17cbf2880
commit 09a83e63b8

View File

@ -2596,7 +2596,7 @@ class MyCompiler: public Compiler {
if (BytesPerWord == 8) {
return4(v);
} else {
appendOperation(&c, MyOperand::mov, v, register_(&c, rax, rdx));
appendOperation(&c, MyOperand::mov8, v, register_(&c, rax, rdx));
epilogue();
ret();
}