Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 43a7ead2810e1463b9d9f63210aac2c007789f58..eb883427bbabb5c08d20e9405680e54b23784ac0 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -1139,7 +1139,7 @@ void Interpreter::DoNewWide(InterpreterAssembler* assembler) { |
// |
// Test if the value in the <src> register equals the accumulator. |
void Interpreter::DoTestEqual(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterEquals, assembler); |
+ DoBinaryOp(Runtime::kEqual, assembler); |
} |
@@ -1147,7 +1147,7 @@ void Interpreter::DoTestEqual(InterpreterAssembler* assembler) { |
// |
// Test if the value in the <src> register is not equal to the accumulator. |
void Interpreter::DoTestNotEqual(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterNotEquals, assembler); |
+ DoBinaryOp(Runtime::kNotEqual, assembler); |
} |
@@ -1155,7 +1155,7 @@ void Interpreter::DoTestNotEqual(InterpreterAssembler* assembler) { |
// |
// Test if the value in the <src> register is strictly equal to the accumulator. |
void Interpreter::DoTestEqualStrict(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterStrictEquals, assembler); |
+ DoBinaryOp(Runtime::kStrictEqual, assembler); |
} |
@@ -1164,7 +1164,7 @@ void Interpreter::DoTestEqualStrict(InterpreterAssembler* assembler) { |
// Test if the value in the <src> register is not strictly equal to the |
// accumulator. |
void Interpreter::DoTestNotEqualStrict(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterStrictNotEquals, assembler); |
+ DoBinaryOp(Runtime::kStrictNotEqual, assembler); |
} |
@@ -1172,7 +1172,7 @@ void Interpreter::DoTestNotEqualStrict(InterpreterAssembler* assembler) { |
// |
// Test if the value in the <src> register is less than the accumulator. |
void Interpreter::DoTestLessThan(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterLessThan, assembler); |
+ DoBinaryOp(Runtime::kLessThan, assembler); |
} |
@@ -1180,7 +1180,7 @@ void Interpreter::DoTestLessThan(InterpreterAssembler* assembler) { |
// |
// Test if the value in the <src> register is greater than the accumulator. |
void Interpreter::DoTestGreaterThan(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterGreaterThan, assembler); |
+ DoBinaryOp(Runtime::kGreaterThan, assembler); |
} |
@@ -1189,7 +1189,7 @@ void Interpreter::DoTestGreaterThan(InterpreterAssembler* assembler) { |
// Test if the value in the <src> register is less than or equal to the |
// accumulator. |
void Interpreter::DoTestLessThanOrEqual(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterLessThanOrEqual, assembler); |
+ DoBinaryOp(Runtime::kLessThanOrEqual, assembler); |
} |
@@ -1198,7 +1198,7 @@ void Interpreter::DoTestLessThanOrEqual(InterpreterAssembler* assembler) { |
// Test if the value in the <src> register is greater than or equal to the |
// accumulator. |
void Interpreter::DoTestGreaterThanOrEqual(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kInterpreterGreaterThanOrEqual, assembler); |
+ DoBinaryOp(Runtime::kGreaterThanOrEqual, assembler); |
} |