| Index: runtime/vm/flow_graph_compiler_x64.h
|
| diff --git a/runtime/vm/flow_graph_compiler_x64.h b/runtime/vm/flow_graph_compiler_x64.h
|
| index 1977ec07336d726a54bbda46da231062217e55e0..a4902e50244312f826236b0b468464fef0cf76b0 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.h
|
| +++ b/runtime/vm/flow_graph_compiler_x64.h
|
| @@ -167,6 +167,9 @@ class FlowGraphCompiler : public ValueObject {
|
| void FinalizeVarDescriptors(const Code& code);
|
| void FinalizeComments(const Code& code);
|
|
|
| + const Bool& true_value() const { return true_value_; }
|
| + const Bool& false_value() const { return false_value_; }
|
| +
|
| static const int kLocalsOffsetFromFP = (-1 * kWordSize);
|
|
|
| private:
|
| @@ -266,6 +269,9 @@ class FlowGraphCompiler : public ValueObject {
|
| GrowableArray<DeoptimizationStub*> deopt_stubs_;
|
| const bool is_optimizing_;
|
|
|
| + const Bool& true_value_;
|
| + const Bool& false_value_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(FlowGraphCompiler);
|
| };
|
|
|
|
|