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

Unified Diff: runtime/vm/object.cc

Issue 2411453003: Fix --verify-on-transition for OSR and concurrent sweep. (Closed)
Patch Set: Created 4 years, 2 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 | « runtime/vm/native_entry.cc ('k') | runtime/vm/runtime_entry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index efa41b723b7f6737a137b8a417bc987f18df6d7c..6f45025c3084e7eee3207ff215d55b36c0bbbae0 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -14563,7 +14563,7 @@ RawStackmap* Code::GetStackmap(
return map->raw(); // We found a stack map for this frame.
}
}
- ASSERT(!is_optimized());
+ ASSERT(!is_optimized() || (pc_offset == Instructions::kUncheckedEntryOffset));
return Stackmap::null();
}
« no previous file with comments | « runtime/vm/native_entry.cc ('k') | runtime/vm/runtime_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698