Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2915)

Unified Diff: runtime/vm/isolate.h

Issue 2602913002: Get rid of unused field has_compiled_code_ from the Isolate structure. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 88df144a37db1f63bf92d2df1e90c4a8e926525a..10f44f036ae49394aa05a8c13cc75469422bebb3 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -313,9 +313,6 @@ class Isolate : public BaseIsolate {
return OFFSET_OF(Isolate, single_step_);
}
- void set_has_compiled_code(bool value) { has_compiled_code_ = value; }
- bool has_compiled_code() const { return has_compiled_code_; }
-
// Lets the embedder know that a service message resulted in a resume request.
void SetResumeRequest() {
resume_request_ = true;
@@ -730,7 +727,6 @@ class Isolate : public BaseIsolate {
Debugger* debugger_;
bool resume_request_;
int64_t last_resume_timestamp_;
- bool has_compiled_code_; // Can check that no compilation occured.
Random random_;
Simulator* simulator_;
Mutex* mutex_; // Protects compiler stats.
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698