allow source operand of any type for move operations

This commit is contained in:
Joel Dice 2009-11-30 15:09:43 +00:00
parent ec701b9994
commit d9de4c607c

View File

@ -2948,7 +2948,7 @@ class MyArchitecture: public Assembler::Architecture {
break; break;
case Move: case Move:
*aTypeMask = (1 << RegisterOperand) | (1 << MemoryOperand); *aTypeMask = ~0;
*aRegisterMask = ~static_cast<uint64_t>(0); *aRegisterMask = ~static_cast<uint64_t>(0);
if (BytesPerWord == 4) { if (BytesPerWord == 4) {