| Index: src/interpreter/bytecode-array-builder.cc
|
| diff --git a/src/interpreter/bytecode-array-builder.cc b/src/interpreter/bytecode-array-builder.cc
|
| index 68972c81c2a26786bcf9bf3f919974aca3102069..271d054caa40a3c0f33cdcfcbc83d29a9957ebca 100644
|
| --- a/src/interpreter/bytecode-array-builder.cc
|
| +++ b/src/interpreter/bytecode-array-builder.cc
|
| @@ -654,7 +654,6 @@ bool BytecodeArrayBuilder::NeedToBooleanCast() {
|
| case Bytecode::kTestEqual:
|
| case Bytecode::kTestNotEqual:
|
| case Bytecode::kTestEqualStrict:
|
| - case Bytecode::kTestNotEqualStrict:
|
| case Bytecode::kTestLessThan:
|
| case Bytecode::kTestLessThanOrEqual:
|
| case Bytecode::kTestGreaterThan:
|
| @@ -1420,8 +1419,6 @@ Bytecode BytecodeArrayBuilder::BytecodeForCompareOperation(Token::Value op) {
|
| return Bytecode::kTestNotEqual;
|
| case Token::Value::EQ_STRICT:
|
| return Bytecode::kTestEqualStrict;
|
| - case Token::Value::NE_STRICT:
|
| - return Bytecode::kTestNotEqualStrict;
|
| case Token::Value::LT:
|
| return Bytecode::kTestLessThan;
|
| case Token::Value::GT:
|
|
|