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

Unified Diff: test/unittests/compiler/graph-trimmer-unittest.cc

Issue 1193833002: [turbofan] Proper dead code elimination as regular reducer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Renamed DeadControl to Dead. Created 5 years, 6 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
Index: test/unittests/compiler/graph-trimmer-unittest.cc
diff --git a/test/unittests/compiler/graph-trimmer-unittest.cc b/test/unittests/compiler/graph-trimmer-unittest.cc
index 03a38d570762a31ff1ec15e3eb78915e38b9c3bb..36892e6ee88bc7671162e35c6f4f4490d59a58f5 100644
--- a/test/unittests/compiler/graph-trimmer-unittest.cc
+++ b/test/unittests/compiler/graph-trimmer-unittest.cc
@@ -32,10 +32,10 @@ class GraphTrimmerTest : public GraphTest {
namespace {
-const Operator kDead0(IrOpcode::kDeadControl, Operator::kNoProperties, "Dead0",
- 0, 0, 1, 0, 0, 0);
-const Operator kLive0(IrOpcode::kDeadControl, Operator::kNoProperties, "Live0",
- 0, 0, 1, 0, 0, 1);
+const Operator kDead0(IrOpcode::kDead, Operator::kNoProperties, "Dead0", 0, 0,
+ 1, 0, 0, 0);
+const Operator kLive0(IrOpcode::kDead, Operator::kNoProperties, "Live0", 0, 0,
+ 1, 0, 0, 1);
} // namespace
« no previous file with comments | « test/unittests/compiler/graph-reducer-unittest.cc ('k') | test/unittests/compiler/node-properties-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698