disallow memory,constant comparisons on x86

This commit is contained in:
Joel Dice 2008-05-19 07:43:37 -06:00
parent b52cefa86e
commit ad6153612b

View File

@ -1942,7 +1942,7 @@ class MyAssembler: public Assembler {
*aTypeMask = ~(1 << MemoryOperand);
*bTypeMask = ~(1 << MemoryOperand);
} else {
*bTypeMask = ~0;
*bTypeMask = ~(1 << ConstantOperand);
}
break;