Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 63e31692193c1901c16005921c0df6d8f7d0d0c7..22e7e413284ec1a0aba974981cc0fe750f5110e4 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -836,11 +836,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()) { |
@@ -1064,7 +1064,7 @@ LInstruction* LChunkBuilder::DoInstanceOf(HInstanceOf* instr) { |
LInstruction* LChunkBuilder::DoInstanceOfKnownGlobal( |
HInstanceOfKnownGlobal* instr) { |
LInstanceOfKnownGlobal* result = |
- new LInstanceOfKnownGlobal(UseFixed(instr->value(), r0), FixedTemp(r4)); |
+ new LInstanceOfKnownGlobal(UseFixed(instr->left(), r0), FixedTemp(r4)); |
return MarkAsCall(DefineFixed(result, r0), instr); |
} |