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

Unified Diff: runtime/vm/object.h

Issue 2146063004: Remove failing assert in Function::ClearCode. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 months 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 | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index c3d39af7ec4ccca3d5e1de1c4b6c3df2fd0c2fab..c609f44b4b18ea0c1c8f22bbdebe696547aa611d 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -2733,8 +2733,8 @@ class Function : public Object {
void set_modifier(RawFunction::AsyncModifier value) const;
// 'was_compiled' is true if the function was compiled once in this
- // VM instantiation. It independent from presence of type feedback
- // (ic_data_array) and code, whihc may be loaded from a snapshot.
+ // VM instantiation. It is independent from presence of type feedback
+ // (ic_data_array) and code, which may be loaded from a snapshot.
void set_was_compiled(bool value) const {
StoreNonPointer(&raw_ptr()->was_compiled_, value ? 1 : 0);
}
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698