summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/graph-trimmer.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/graph-trimmer.h')
-rw-r--r--deps/v8/src/compiler/graph-trimmer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/compiler/graph-trimmer.h b/deps/v8/src/compiler/graph-trimmer.h
index 5a5f525ef4..8e420226d1 100644
--- a/deps/v8/src/compiler/graph-trimmer.h
+++ b/deps/v8/src/compiler/graph-trimmer.h
@@ -20,6 +20,8 @@ class V8_EXPORT_PRIVATE GraphTrimmer final {
public:
GraphTrimmer(Zone* zone, Graph* graph);
~GraphTrimmer();
+ GraphTrimmer(const GraphTrimmer&) = delete;
+ GraphTrimmer& operator=(const GraphTrimmer&) = delete;
// Trim nodes in the {graph} that are not reachable from {graph->end()}.
void TrimGraph();
@@ -50,8 +52,6 @@ class V8_EXPORT_PRIVATE GraphTrimmer final {
Graph* const graph_;
NodeMarker<bool> is_live_;
NodeVector live_;
-
- DISALLOW_COPY_AND_ASSIGN(GraphTrimmer);
};
} // namespace compiler