| Index: src/compiler/instruction-selector-impl.h
|
| diff --git a/src/compiler/instruction-selector-impl.h b/src/compiler/instruction-selector-impl.h
|
| index 600ac399da7544368b54380e7021d36f8f06eeb4..49ad0918a6e718fe99a6c91bdaff7118911f7717 100644
|
| --- a/src/compiler/instruction-selector-impl.h
|
| +++ b/src/compiler/instruction-selector-impl.h
|
| @@ -55,9 +55,9 @@ class OperandGenerator {
|
| }
|
|
|
| InstructionOperand* Use(Node* node) {
|
| - return Use(node,
|
| - new (zone()) UnallocatedOperand(
|
| - UnallocatedOperand::ANY, UnallocatedOperand::USED_AT_START));
|
| + return Use(
|
| + node, new (zone()) UnallocatedOperand(
|
| + UnallocatedOperand::NONE, UnallocatedOperand::USED_AT_START));
|
| }
|
|
|
| InstructionOperand* UseRegister(Node* node) {
|
| @@ -69,7 +69,7 @@ class OperandGenerator {
|
| // Use register or operand for the node. If a register is chosen, it won't
|
| // alias any temporary or output registers.
|
| InstructionOperand* UseUnique(Node* node) {
|
| - return Use(node, new (zone()) UnallocatedOperand(UnallocatedOperand::ANY));
|
| + return Use(node, new (zone()) UnallocatedOperand(UnallocatedOperand::NONE));
|
| }
|
|
|
| // Use a unique register for the node that does not alias any temporary or
|
|
|