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

Unified Diff: test/cctest/compiler/test-js-typed-lowering.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/interpreter/interpreter.cc ('k') | test/unittests/compiler/typer-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/compiler/test-js-typed-lowering.cc
diff --git a/test/cctest/compiler/test-js-typed-lowering.cc b/test/cctest/compiler/test-js-typed-lowering.cc
index 360672c41af4c22c1ff0c3257677e57e44d1d672..c14ca194820e9eaa94067bc2aa8a85b777a17211 100644
--- a/test/cctest/compiler/test-js-typed-lowering.cc
+++ b/test/cctest/compiler/test-js-typed-lowering.cc
@@ -824,17 +824,6 @@ void CheckEqualityReduction(JSTypedLoweringTester* R, bool strict, Node* l,
Node* r = R->reduce(eq);
R->CheckBinop(expected, r);
}
-
- {
- const Operator* op =
- strict ? R->javascript.StrictNotEqual(CompareOperationHint::kAny)
- : R->javascript.NotEqual(CompareOperationHint::kAny);
- Node* ne = R->Binop(op, p0, p1);
- Node* n = R->reduce(ne);
- CHECK_EQ(IrOpcode::kBooleanNot, n->opcode());
- Node* r = n->InputAt(0);
- R->CheckBinop(expected, r);
- }
}
}
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | test/unittests/compiler/typer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698