Index: src/compiler/simplified-lowering.h |
diff --git a/src/compiler/simplified-lowering.h b/src/compiler/simplified-lowering.h |
index 9e83fdf652ee8c0c11e405fc994622c6648506e6..2ba7e3bd88b469199a096ecd1f2d8c467a1171f5 100644 |
--- a/src/compiler/simplified-lowering.h |
+++ b/src/compiler/simplified-lowering.h |
@@ -33,7 +33,6 @@ class SimplifiedLowering { |
private: |
JSGraph* jsgraph_; |
- MachineOperatorBuilder machine_; |
Node* SmiTag(Node* node); |
Node* IsTagged(Node* node); |
@@ -48,7 +47,7 @@ class SimplifiedLowering { |
JSGraph* jsgraph() { return jsgraph_; } |
Graph* graph() { return jsgraph()->graph(); } |
CommonOperatorBuilder* common() { return jsgraph()->common(); } |
- MachineOperatorBuilder* machine() { return &machine_; } |
+ MachineOperatorBuilder* machine() { return jsgraph()->machine(); } |
}; |
} // namespace compiler |