aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/unittests/compiler/graph-unittest.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/unittests/compiler/graph-unittest.h')
-rw-r--r--deps/v8/test/unittests/compiler/graph-unittest.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/deps/v8/test/unittests/compiler/graph-unittest.h b/deps/v8/test/unittests/compiler/graph-unittest.h
index d9b9934770..8317ebf279 100644
--- a/deps/v8/test/unittests/compiler/graph-unittest.h
+++ b/deps/v8/test/unittests/compiler/graph-unittest.h
@@ -34,6 +34,7 @@ class GraphTest : public virtual TestWithNativeContext,
Node* end() { return graph()->end(); }
Node* Parameter(int32_t index = 0);
+ Node* Parameter(Type type, int32_t index = 0);
Node* Float32Constant(volatile float value);
Node* Float64Constant(volatile double value);
Node* Int32Constant(int32_t value);
@@ -79,9 +80,6 @@ class TypedGraphTest : public GraphTest {
~TypedGraphTest() override;
protected:
- Node* Parameter(int32_t index = 0) { return GraphTest::Parameter(index); }
- Node* Parameter(Type type, int32_t index = 0);
-
Typer* typer() { return &typer_; }
private: