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

Unified Diff: runtime/vm/kernel_reader.cc

Issue 2528763002: VM: [Kernel] Relax assertion in SSA construction. (Closed)
Patch Set: Created 4 years, 1 month 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/flow_graph.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/kernel_reader.cc
diff --git a/runtime/vm/kernel_reader.cc b/runtime/vm/kernel_reader.cc
index cbecd512ea59bf9bbf1a1077525d368e351e3ca7..0a11842b6966c535a08c30221ccb926776d83b60 100644
--- a/runtime/vm/kernel_reader.cc
+++ b/runtime/vm/kernel_reader.cc
@@ -124,9 +124,7 @@ Object& KernelReader::ReadProgram() {
if (!library.Loaded()) library.SetLoaded();
}
- if (!ClassFinalizer::ProcessPendingClasses(/*from_kernel=*/true)) {
- FATAL("Error in class finalization during bootstrapping.");
- }
+ ClassFinalizer::ProcessPendingClasses(/*from_kernel=*/true);
kustermann 2016/11/24 12:16:49 I'm not sure I completely understand why we ignore
dart::Library& library = LookupLibrary(kernel_main_library);
« no previous file with comments | « runtime/vm/flow_graph.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698