| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index f54e84b050a0aca2ea954235a5d891db82cbd04f..7bf733a1a82a2b5b8434f6d6be1d4a3d7add7eb1 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -1730,11 +1730,11 @@ LInstruction* LChunkBuilder::DoCompareNumericAndBranch(
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch(
|
| - HCompareObjectEqAndBranch* instr) {
|
| +LInstruction* LChunkBuilder::DoCompareObjectAndBranch(
|
| + HCompareObjectAndBranch* instr) {
|
| LOperand* left = UseRegisterAtStart(instr->left());
|
| LOperand* right = UseRegisterAtStart(instr->right());
|
| - return new(zone()) LCmpObjectEqAndBranch(left, right);
|
| + return new(zone()) LCmpObjectAndBranch(left, right);
|
| }
|
|
|
|
|
|
|