summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/js-graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/js-graph.h')
-rw-r--r--deps/v8/src/compiler/js-graph.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/deps/v8/src/compiler/js-graph.h b/deps/v8/src/compiler/js-graph.h
index 517b799a24..774b8e7433 100644
--- a/deps/v8/src/compiler/js-graph.h
+++ b/deps/v8/src/compiler/js-graph.h
@@ -61,12 +61,6 @@ class V8_EXPORT_PRIVATE JSGraph : public MachineGraph {
// Creates a NumberConstant node, usually canonicalized.
Node* Constant(double value);
- // Creates a NumberConstant node, usually canonicalized.
- Node* Constant(int32_t value);
-
- // Creates a NumberConstant node, usually canonicalized.
- Node* Constant(uint32_t value);
-
// Creates a HeapConstant node for either true or false.
Node* BooleanConstant(bool is_true) {
return is_true ? TrueConstant() : FalseConstant();