Index: src/arm64/debug-arm64.cc |
diff --git a/src/arm64/debug-arm64.cc b/src/arm64/debug-arm64.cc |
index 7b24526dc1ed57000b8b58f0e848ea3adfc16001..ee5a94a17e99603a704ad26da0c2c7232e48b50d 100644 |
--- a/src/arm64/debug-arm64.cc |
+++ b/src/arm64/debug-arm64.cc |
@@ -166,11 +166,13 @@ void DebugCodegen::GenerateReturnDebugBreak(MacroAssembler* masm) { |
} |
-void DebugCodegen::GenerateSlot(MacroAssembler* masm) { |
+void DebugCodegen::GenerateSlot(MacroAssembler* masm, |
+ DebugCodegen::SlotLocation location, |
+ int call_argc) { |
// Generate enough nop's to make space for a call instruction. Avoid emitting |
// the constant pool in the debug break slot code. |
InstructionAccurateScope scope(masm, Assembler::kDebugBreakSlotInstructions); |
- |
+ RecordRelocInfo(masm, location, call_argc); |
for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) { |
__ nop(Assembler::DEBUG_BREAK_NOP); |
} |