| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index fcf5b25588e088817721183368db94d8b87167ec..d2c6c8d5a401c5432d5800971bb77e6cc307cca0 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -92,7 +92,7 @@ class LChunkBuilder;
|
| V(CheckSmi) \
|
| V(ClampToUint8) \
|
| V(ClassOfTestAndBranch) \
|
| - V(CompareIDAndBranch) \
|
| + V(CompareNumbersAndBranch) \
|
| V(CompareGeneric) \
|
| V(CompareObjectEqAndBranch) \
|
| V(CompareMap) \
|
| @@ -2574,9 +2574,9 @@ class HCompareGeneric: public HBinaryOperation {
|
| };
|
|
|
|
|
| -class HCompareIDAndBranch: public HTemplateControlInstruction<2, 2> {
|
| +class HCompareNumbersAndBranch: public HTemplateControlInstruction<2, 2> {
|
| public:
|
| - HCompareIDAndBranch(HValue* left, HValue* right, Token::Value token)
|
| + HCompareNumbersAndBranch(HValue* left, HValue* right, Token::Value token)
|
| : token_(token) {
|
| ASSERT(Token::IsCompareOp(token));
|
| SetOperandAt(0, left);
|
| @@ -2597,7 +2597,7 @@ class HCompareIDAndBranch: public HTemplateControlInstruction<2, 2> {
|
| }
|
| virtual void PrintDataTo(StringStream* stream);
|
|
|
| - DECLARE_CONCRETE_INSTRUCTION(CompareIDAndBranch)
|
| + DECLARE_CONCRETE_INSTRUCTION(CompareNumbersAndBranch)
|
|
|
| private:
|
| Representation input_representation_;
|
|
|