| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 85c04685bad2a90503069ea9ea1747e9f384793a..b10b6e0eec2c7662f91c51385ed515bb4bf9854c 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -76,7 +76,7 @@ class LCodeGen;
|
| V(ClampTToUint8NoSSE2) \
|
| V(ClassOfTestAndBranch) \
|
| V(CompareNumericAndBranch) \
|
| - V(CmpObjectEqAndBranch) \
|
| + V(CmpObjectAndBranch) \
|
| V(CmpMapAndBranch) \
|
| V(CmpT) \
|
| V(ConstantD) \
|
| @@ -842,9 +842,9 @@ class LMathPowHalf: public LTemplateInstruction<1, 2, 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;
|
| }
|
| @@ -852,8 +852,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_CONCRETE_INSTRUCTION(CmpObjectAndBranch,
|
| + "cmp-object-and-branch")
|
| + DECLARE_HYDROGEN_ACCESSOR(CompareObjectAndBranch)
|
| };
|
|
|
|
|
|
|