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

Unified Diff: runtime/vm/stub_code_mips.cc

Issue 167893006: MIPS: Fix bug in allocation stub's slow path. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: updated status file Created 6 years, 10 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 | « no previous file | tests/language/vm/regress_16873_test.dart » ('j') | tests/language/vm/regress_16873_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code_mips.cc
===================================================================
--- runtime/vm/stub_code_mips.cc (revision 32722)
+++ runtime/vm/stub_code_mips.cc (working copy)
@@ -1396,7 +1396,7 @@
__ EnterStubFrame(true); // Uses pool pointer to pass cls to runtime.
__ LoadObject(TMP, cls);
- __ addiu(SP, SP, Immediate(-4 * kWordSize));
+ __ addiu(SP, SP, Immediate(-3 * kWordSize));
// Space on stack for return value.
__ LoadImmediate(T7, reinterpret_cast<intptr_t>(Object::null()));
__ sw(T7, Address(SP, 2 * kWordSize));
« no previous file with comments | « no previous file | tests/language/vm/regress_16873_test.dart » ('j') | tests/language/vm/regress_16873_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698