Index: src/compiler/control-reducer.h |
diff --git a/src/compiler/control-reducer.h b/src/compiler/control-reducer.h |
index d69d966404979a0cfc62457850dfc890cfd178d2..e9ae9bc9db9f0e851bfbb3ac2eaabd1298d37f5a 100644 |
--- a/src/compiler/control-reducer.h |
+++ b/src/compiler/control-reducer.h |
@@ -15,10 +15,11 @@ class CommonOperatorBuilder; |
class ControlReducer { |
public: |
// Perform branch folding and dead code elimination on the graph. |
- static void ReduceGraph(JSGraph* graph, CommonOperatorBuilder* builder); |
+ static void ReduceGraph(Zone* zone, JSGraph* graph, |
+ CommonOperatorBuilder* builder); |
// Trim nodes in the graph that are not reachable from end. |
- static void TrimGraph(JSGraph* graph); |
+ static void TrimGraph(Zone* zone, JSGraph* graph); |
}; |
} |
} |