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

Unified Diff: test/compiler-unittests/machine-operator-reducer-unittest.cc

Issue 479793004: [turbofan] Initial import of SimplifiedOperatorReducer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 6 years, 4 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/compiler-unittests/machine-operator-reducer-unittest.cc
diff --git a/test/compiler-unittests/machine-operator-reducer-unittest.cc b/test/compiler-unittests/machine-operator-reducer-unittest.cc
index 75c85623de8760132211f614440dedbd1a7a7ae2..6621c53f73f54a5369ea0f9486217f0ff1adc59a 100644
--- a/test/compiler-unittests/machine-operator-reducer-unittest.cc
+++ b/test/compiler-unittests/machine-operator-reducer-unittest.cc
@@ -17,13 +17,6 @@ class MachineOperatorReducerTest : public GraphTest {
virtual ~MachineOperatorReducerTest() {}
protected:
- Node* Parameter(int32_t index) {
- return graph()->NewNode(common()->Parameter(index), graph()->start());
- }
- Node* Int32Constant(int32_t value) {
- return graph()->NewNode(common()->Int32Constant(value));
- }
-
Reduction Reduce(Node* node) {
MachineOperatorReducer reducer(graph());
return reducer.Reduce(node);
« no previous file with comments | « test/compiler-unittests/graph-unittest.cc ('k') | test/compiler-unittests/simplified-operator-reducer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698