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

Unified Diff: runtime/vm/flow_graph_compiler.cc

Issue 1413233004: nt # Enter a description of the change. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: c Created 5 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/flow_graph_compiler.h ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.cc
diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
index 433d91ae94a656f2642f0011dcfeaf35e740c04a..d533375ee374f0bc9c68ed9ee3a14e66b6d67a2b 100644
--- a/runtime/vm/flow_graph_compiler.cc
+++ b/runtime/vm/flow_graph_compiler.cc
@@ -164,7 +164,6 @@ FlowGraphCompiler::FlowGraphCompiler(
const GrowableArray<const Function*>& inline_id_to_function,
const GrowableArray<intptr_t>& caller_inline_id)
: thread_(Thread::Current()),
- isolate_(Isolate::Current()),
zone_(Thread::Current()->zone()),
assembler_(assembler),
parsed_function_(parsed_function),
@@ -181,15 +180,15 @@ FlowGraphCompiler::FlowGraphCompiler(
may_reoptimize_(false),
intrinsic_mode_(false),
double_class_(Class::ZoneHandle(
- isolate_->object_store()->double_class())),
+ isolate()->object_store()->double_class())),
mint_class_(Class::ZoneHandle(
- isolate_->object_store()->mint_class())),
+ isolate()->object_store()->mint_class())),
float32x4_class_(Class::ZoneHandle(
- isolate_->object_store()->float32x4_class())),
+ isolate()->object_store()->float32x4_class())),
float64x2_class_(Class::ZoneHandle(
- isolate_->object_store()->float64x2_class())),
+ isolate()->object_store()->float64x2_class())),
int32x4_class_(Class::ZoneHandle(
- isolate_->object_store()->int32x4_class())),
+ isolate()->object_store()->int32x4_class())),
list_class_(Class::ZoneHandle(
Library::Handle(Library::CoreLibrary()).
LookupClass(Symbols::List()))),
« no previous file with comments | « runtime/vm/flow_graph_compiler.h ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698