| Index: runtime/vm/flow_graph_compiler.h
 | 
| diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
 | 
| index df9f7e4f9497bc722c6548ba877a584b1adb5daa..47e45af22f53cb2c75fa83d2e03008943cd6d9f6 100644
 | 
| --- a/runtime/vm/flow_graph_compiler.h
 | 
| +++ b/runtime/vm/flow_graph_compiler.h
 | 
| @@ -526,7 +526,7 @@ class FlowGraphCompiler : public ValueObject {
 | 
|    }
 | 
|  
 | 
|    Thread* thread() const { return thread_; }
 | 
| -  Isolate* isolate() const { return isolate_; }
 | 
| +  Isolate* isolate() const { return thread_->isolate(); }
 | 
|    Zone* zone() const { return zone_; }
 | 
|  
 | 
|    void AddStubCallTarget(const Code& code);
 | 
| @@ -683,7 +683,6 @@ class FlowGraphCompiler : public ValueObject {
 | 
|    };
 | 
|  
 | 
|    Thread* thread_;
 | 
| -  Isolate* isolate_;
 | 
|    Zone* zone_;
 | 
|    Assembler* assembler_;
 | 
|    const ParsedFunction& parsed_function_;
 | 
| 
 |