Index: src/compiler/js-global-specialization.h |
diff --git a/src/compiler/js-global-specialization.h b/src/compiler/js-global-specialization.h |
index 8454bd0e6b6def8c71e1ba0855dc431c7cb586be..a040e9bdbfcb345e41ce7eaa51a866f8d305d5f0 100644 |
--- a/src/compiler/js-global-specialization.h |
+++ b/src/compiler/js-global-specialization.h |
@@ -62,7 +62,7 @@ class JSGlobalSpecialization final : public AdvancedReducer { |
Isolate* isolate() const; |
CommonOperatorBuilder* common() const; |
JSOperatorBuilder* javascript() const; |
- SimplifiedOperatorBuilder* simplified() { return &simplified_; } |
+ SimplifiedOperatorBuilder* simplified() const; |
Flags flags() const { return flags_; } |
Handle<GlobalObject> global_object() const { return global_object_; } |
CompilationDependencies* dependencies() const { return dependencies_; } |
@@ -71,7 +71,6 @@ class JSGlobalSpecialization final : public AdvancedReducer { |
Flags const flags_; |
Handle<GlobalObject> global_object_; |
CompilationDependencies* const dependencies_; |
- SimplifiedOperatorBuilder simplified_; |
DISALLOW_COPY_AND_ASSIGN(JSGlobalSpecialization); |
}; |