| Index: src/compiler/simplified-lowering.h
|
| diff --git a/src/compiler/simplified-lowering.h b/src/compiler/simplified-lowering.h
|
| index 852ac7eaa082c3e8b08ef7be60a493182d3e3f0b..b21cf21ffdfe4cc94ea3050867bb8ad1dd4f3370 100644
|
| --- a/src/compiler/simplified-lowering.h
|
| +++ b/src/compiler/simplified-lowering.h
|
| @@ -20,7 +20,8 @@ class RepresentationChanger;
|
|
|
| class SimplifiedLowering FINAL {
|
| public:
|
| - explicit SimplifiedLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {}
|
| + SimplifiedLowering(JSGraph* jsgraph, Zone* zone)
|
| + : jsgraph_(jsgraph), zone_(zone) {}
|
| ~SimplifiedLowering() {}
|
|
|
| void LowerAllNodes();
|
| @@ -41,7 +42,8 @@ class SimplifiedLowering FINAL {
|
| void DoStringLessThanOrEqual(Node* node);
|
|
|
| private:
|
| - JSGraph* jsgraph_;
|
| + JSGraph* const jsgraph_;
|
| + Zone* const zone_;
|
|
|
| Node* SmiTag(Node* node);
|
| Node* IsTagged(Node* node);
|
|
|