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

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

Issue 1549383002: MIPS64: Fix [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/mips64/builtins-mips64.cc
diff --git a/src/mips64/builtins-mips64.cc b/src/mips64/builtins-mips64.cc
index 1a5c99bbd0d83d4d5b256f79ce1b6928ff799ac5..f86c1770fe5b2f8bcbeca8348d83796cc3c3868d 100644
--- a/src/mips64/builtins-mips64.cc
+++ b/src/mips64/builtins-mips64.cc
@@ -2176,7 +2176,7 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) {
__ ld(a1, FieldMemOperand(a1, JSBoundFunction::kBoundTargetFunctionOffset));
__ li(at, Operand(ExternalReference(Builtins::kConstruct, masm->isolate())));
__ ld(at, MemOperand(at));
- __ Addu(at, at, Operand(Code::kHeaderSize - kHeapObjectTag));
+ __ Daddu(at, at, Operand(Code::kHeaderSize - kHeapObjectTag));
ivica.bogosavljevic 2015/12/28 13:46:30 Full list of failures: https://v8.mips.com/bbv8/bu
__ Jump(at);
}
« 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