| Index: src/compiler/js-builtin-reducer.h
|
| diff --git a/src/compiler/js-builtin-reducer.h b/src/compiler/js-builtin-reducer.h
|
| index bbff3ef5e7979937b9aea0999ef45e639c91c79f..92c7b4ae6ee06f6482bb352b512bc0ff49351ca7 100644
|
| --- a/src/compiler/js-builtin-reducer.h
|
| +++ b/src/compiler/js-builtin-reducer.h
|
| @@ -24,11 +24,13 @@ class JSBuiltinReducer FINAL : public Reducer {
|
| virtual Reduction Reduce(Node* node) OVERRIDE;
|
|
|
| private:
|
| - Graph* graph() { return jsgraph_->graph(); }
|
| - CommonOperatorBuilder* common() { return jsgraph_->common(); }
|
| - MachineOperatorBuilder* machine() { return jsgraph_->machine(); }
|
| + JSGraph* jsgraph() const { return jsgraph_; }
|
| + Graph* graph() const { return jsgraph_->graph(); }
|
| + CommonOperatorBuilder* common() const { return jsgraph_->common(); }
|
| + MachineOperatorBuilder* machine() const { return jsgraph_->machine(); }
|
| SimplifiedOperatorBuilder* simplified() { return &simplified_; }
|
|
|
| + Reduction ReduceMathMax(Node* node);
|
| Reduction ReduceMathImul(Node* node);
|
|
|
| JSGraph* jsgraph_;
|
|
|