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

Unified Diff: runtime/vm/isolate_reload.cc

Issue 2994283002: [VM-Compiler] Don't inline if we don't have inlining budget enough to fully inline.
Patch Set: Created 3 years, 4 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
Index: runtime/vm/isolate_reload.cc
diff --git a/runtime/vm/isolate_reload.cc b/runtime/vm/isolate_reload.cc
index 80d8d8157bbf576977f7e64243aafd1336141bcb..f2b27c6e35a76b05e821503546a4223161cef2ed 100644
--- a/runtime/vm/isolate_reload.cc
+++ b/runtime/vm/isolate_reload.cc
@@ -1590,7 +1590,7 @@ class MarkFunctionsForRecompilation : public ObjectVisitor {
// Null out the ICData array and code.
func.ClearICDataArray();
func.ClearCode();
- func.set_was_compiled(false);
+ func.SetWasCompiled(false);
}
void PreserveUnoptimizedCode() {

Powered by Google App Engine
This is Rietveld 408576698