| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 3ec4ba1fb7bdb8637cca8ee4d411186e51bc0413..c20cce8bf37b0949951e1ac739861cfc5abec0e2 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -849,11 +849,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()) {
|
| @@ -1153,7 +1153,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);
|
| }
|
|
|
|
|