Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(647)

Unified Diff: src/interpreter/interpreter.cc

Issue 2727003006: [turbofan] Drop obsolete unused JSStrictNotEqual operator. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/verifier.cc ('k') | test/cctest/compiler/test-js-typed-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/interpreter.cc
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
index 5db69e4f67a17fd91e50f5ff2eb04de88c33f4dd..2f5910041d3ee860e6ed0f0d6e41b4c54165f599 100644
--- a/src/interpreter/interpreter.cc
+++ b/src/interpreter/interpreter.cc
@@ -1305,8 +1305,7 @@ void Interpreter::DoCompareOpWithFeedback(Token::Value compare_op,
assembler->Equal(CodeStubAssembler::kNegateResult, lhs, rhs, context);
break;
case Token::EQ_STRICT:
- result = assembler->StrictEqual(CodeStubAssembler::kDontNegateResult, lhs,
- rhs, context);
+ result = assembler->StrictEqual(lhs, rhs, context);
break;
case Token::LT:
result = assembler->RelationalComparison(CodeStubAssembler::kLessThan,
« no previous file with comments | « src/compiler/verifier.cc ('k') | test/cctest/compiler/test-js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698