| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index 93bc3b093c07abb33db7110bbfac69b19421f734..8d8eee6715a196f33c628a6242b4e36c6dc3e190 100644
|
| --- a/src/mips/lithium-mips.h
|
| +++ b/src/mips/lithium-mips.h
|
| @@ -75,7 +75,7 @@ class LCodeGen;
|
| V(ClampTToUint8) \
|
| V(ClassOfTestAndBranch) \
|
| V(CompareNumericAndBranch) \
|
| - V(CmpObjectEqAndBranch) \
|
| + V(CmpObjectAndBranch) \
|
| V(CmpMapAndBranch) \
|
| V(CmpT) \
|
| V(ConstantD) \
|
| @@ -865,9 +865,9 @@ class LMathPowHalf: public LTemplateInstruction<1, 1, 1> {
|
| };
|
|
|
|
|
| -class LCmpObjectEqAndBranch: public LControlInstruction<2, 0> {
|
| +class LCmpObjectAndBranch: public LControlInstruction<2, 0> {
|
| public:
|
| - LCmpObjectEqAndBranch(LOperand* left, LOperand* right) {
|
| + LCmpObjectAndBranch(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| inputs_[1] = right;
|
| }
|
| @@ -875,9 +875,9 @@ class LCmpObjectEqAndBranch: public LControlInstruction<2, 0> {
|
| LOperand* left() { return inputs_[0]; }
|
| LOperand* right() { return inputs_[1]; }
|
|
|
| - DECLARE_CONCRETE_INSTRUCTION(CmpObjectEqAndBranch,
|
| - "cmp-object-eq-and-branch")
|
| - DECLARE_HYDROGEN_ACCESSOR(CompareObjectEqAndBranch)
|
| + DECLARE_CONCRETE_INSTRUCTION(CmpObjectAndBranch,
|
| + "cmp-object-and-branch")
|
| + DECLARE_HYDROGEN_ACCESSOR(CompareObjectAndBranch)
|
| };
|
|
|
|
|
|
|