Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 58c452102357909bd5c411c40b66b80ea6f6a377..b2994cd154c62c03a0f1edc27a5ca733912d6984 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -831,11 +831,11 @@ LInstruction* LChunkBuilder::DoShift(Token::Value op, |
} |
ASSERT(instr->representation().IsInteger32()); |
- ASSERT(instr->OperandAt(0)->representation().IsInteger32()); |
- ASSERT(instr->OperandAt(1)->representation().IsInteger32()); |
- LOperand* left = UseRegisterAtStart(instr->OperandAt(0)); |
+ ASSERT(instr->left()->representation().IsInteger32()); |
+ ASSERT(instr->right()->representation().IsInteger32()); |
+ LOperand* left = UseRegisterAtStart(instr->left()); |
- HValue* right_value = instr->OperandAt(1); |
+ HValue* right_value = instr->right(); |
LOperand* right = NULL; |
int constant_value = 0; |
if (right_value->IsConstant()) { |
@@ -1059,7 +1059,7 @@ LInstruction* LChunkBuilder::DoInstanceOf(HInstanceOf* instr) { |
LInstruction* LChunkBuilder::DoInstanceOfKnownGlobal( |
HInstanceOfKnownGlobal* instr) { |
LInstanceOfKnownGlobal* result = |
- new LInstanceOfKnownGlobal(UseFixed(instr->value(), rax), |
+ new LInstanceOfKnownGlobal(UseFixed(instr->left(), rax), |
FixedTemp(rdi)); |
return MarkAsCall(DefineFixed(result, rax), instr); |
} |