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

Unified Diff: runtime/vm/runtime_entry_mips.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_mips.cc
diff --git a/runtime/vm/runtime_entry_mips.cc b/runtime/vm/runtime_entry_mips.cc
index 872a37c26a2bd97d4982969248ccd94ecd0aeb11..4355e7e4662613b7857eb153d4c85923d861b30d 100644
--- a/runtime/vm/runtime_entry_mips.cc
+++ b/runtime/vm/runtime_entry_mips.cc
@@ -49,8 +49,7 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
// informative error message.
__ LoadExternalLabel(S5, &label, kNotPatchable);
__ LoadImmediate(S4, argument_count);
- __ BranchLink(&Isolate::Current()->stub_code()->CallToRuntimeLabel(),
- kNotPatchable);
+ __ BranchLink(&StubCode::CallToRuntimeLabel(), kNotPatchable);
}
}

Powered by Google App Engine
This is Rietveld 408576698