summaryrefslogtreecommitdiff
path: root/deps/v8/src/debug/mips64/debug-mips64.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/debug/mips64/debug-mips64.cc')
-rw-r--r--deps/v8/src/debug/mips64/debug-mips64.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/debug/mips64/debug-mips64.cc b/deps/v8/src/debug/mips64/debug-mips64.cc
index b8dbbfb45e..fded965462 100644
--- a/deps/v8/src/debug/mips64/debug-mips64.cc
+++ b/deps/v8/src/debug/mips64/debug-mips64.cc
@@ -124,13 +124,13 @@ void DebugCodegen::GenerateFrameDropperTrampoline(MacroAssembler* masm) {
// - Leave the frame.
// - Restart the frame by calling the function.
__ mov(fp, a1);
- __ ld(a1, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
+ __ Ld(a1, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset));
// Pop return address and frame.
__ LeaveFrame(StackFrame::INTERNAL);
- __ ld(a0, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset));
- __ ld(a0,
+ __ Ld(a0, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset));
+ __ Ld(a0,
FieldMemOperand(a0, SharedFunctionInfo::kFormalParameterCountOffset));
__ mov(a2, a0);