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

Unified Diff: runtime/vm/runtime_entry_arm64.cc

Issue 1247783002: Make array allocation stub shared between isolates. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
Index: runtime/vm/runtime_entry_arm64.cc
diff --git a/runtime/vm/runtime_entry_arm64.cc b/runtime/vm/runtime_entry_arm64.cc
index a2edb95f28ede8938044ffe57ecbac57f882b3a6..b0aad2395f78aa2c057fc0cd25e7975cc3d805be 100644
--- a/runtime/vm/runtime_entry_arm64.cc
+++ b/runtime/vm/runtime_entry_arm64.cc
@@ -57,7 +57,7 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
// informative error message.
__ LoadExternalLabel(R5, &label, kNotPatchable, PP);
__ LoadImmediate(R4, argument_count, kNoPP);
- __ BranchLink(&Isolate::Current()->stub_code()->CallToRuntimeLabel(), PP);
+ __ BranchLink(&StubCode::CallToRuntimeLabel(), PP);
}
}

Powered by Google App Engine
This is Rietveld 408576698