Index: src/compiler/js-inlining.cc |
diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc |
index 542b7e556978f81f7bfefa9d7e84dd4b4bdfe120..4e8adb25a076dfafaf18c2f4a7d12ba2c0455ffe 100644 |
--- a/src/compiler/js-inlining.cc |
+++ b/src/compiler/js-inlining.cc |
@@ -152,8 +152,8 @@ void Inlinee::UnifyReturn() { |
Operator* op_phi = jsgraph_->common()->Phi(predecessors); |
Operator* op_ephi = jsgraph_->common()->EffectPhi(predecessors); |
- NodeVector values(NodeVector::allocator_type(jsgraph_->zone())); |
- NodeVector effects(NodeVector::allocator_type(jsgraph_->zone())); |
+ NodeVector values(jsgraph_->zone()); |
+ NodeVector effects(jsgraph_->zone()); |
// Iterate over all control flow predecessors, |
// which must be return statements. |
InputIter iter = final_merge->inputs().begin(); |