 Chromium Code Reviews
 Chromium Code Reviews Issue 868883002:
  Remove the dependency of Zone on Isolate  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master
    
  
    Issue 868883002:
  Remove the dependency of Zone on Isolate  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master| Index: src/compiler/graph-inl.h | 
| diff --git a/src/compiler/graph-inl.h b/src/compiler/graph-inl.h | 
| index c135ae5d77bc13b05bf3229f8debb74821d51ea7..3a21737c6e796c523800f540afb802458b5b5b21 100644 | 
| --- a/src/compiler/graph-inl.h | 
| +++ b/src/compiler/graph-inl.h | 
| @@ -14,7 +14,7 @@ namespace compiler { | 
| template <class Visitor> | 
| void Graph::VisitNodeInputsFromEnd(Visitor* visitor) { | 
| - Zone tmp_zone(zone()->isolate()); | 
| + Zone tmp_zone; | 
| GenericGraphVisit::Visit<Visitor>(this, &tmp_zone, end(), visitor); | 
| } |