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

Unified Diff: src/builtins/mips64/builtins-mips64.cc

Issue 2873873005: MIPS64: Fix load in Generate_JSConstructStubGeneric (Closed)
Patch Set: Created 3 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/mips64/builtins-mips64.cc
diff --git a/src/builtins/mips64/builtins-mips64.cc b/src/builtins/mips64/builtins-mips64.cc
index e4d01af3827e3e410ee540237fe2d658c39b9775..39cb1c553146dc7b2a0bb174fba2db97e9cc501b 100644
--- a/src/builtins/mips64/builtins-mips64.cc
+++ b/src/builtins/mips64/builtins-mips64.cc
@@ -587,8 +587,8 @@ void Generate_JSConstructStubGeneric(MacroAssembler* masm,
// -----------------------------------
// Restore constructor function and argument count.
- __ ldr(a1, MemOperand(fp, ConstructFrameConstants::kConstructorOffset));
- __ ldr(a0, MemOperand(fp, ConstructFrameConstants::kLengthOffset));
+ __ Ld(a1, MemOperand(fp, ConstructFrameConstants::kConstructorOffset));
+ __ Ld(a0, MemOperand(fp, ConstructFrameConstants::kLengthOffset));
__ SmiUntag(a0);
// Set up pointer to last argument.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698