Index: runtime/vm/precompiler.h |
diff --git a/runtime/vm/precompiler.h b/runtime/vm/precompiler.h |
index f4af73527b25fbdc7bc0230c13b8f99ada7d8015..08fc79e79042027f9c1d40db99192ba43ef54847 100644 |
--- a/runtime/vm/precompiler.h |
+++ b/runtime/vm/precompiler.h |
@@ -386,7 +386,6 @@ class Precompiler : public ValueObject { |
public: |
static RawError* CompileAll( |
Dart_QualifiedFunctionName embedder_entry_points[], |
- bool reset_fields, |
uint8_t* jit_feedback, |
intptr_t jit_feedback_length); |
@@ -419,7 +418,7 @@ class Precompiler : public ValueObject { |
void TryApplyFeedback(ParsedJSONArray* js_icdatas, const ICData& ic); |
private: |
- Precompiler(Thread* thread, bool reset_fields); |
+ explicit Precompiler(Thread* thread); |
void LoadFeedback(uint8_t* jit_feedback, intptr_t jit_feedback_length); |
ParsedJSONObject* LookupFeedback(const Function& function); |
@@ -486,8 +485,6 @@ class Precompiler : public ValueObject { |
Zone* zone_; |
Isolate* isolate_; |
- const bool reset_fields_; |
- |
ParsedJSONObject* jit_feedback_; |
bool changed_; |