Index: src/arm64/assembler-arm64.h |
diff --git a/src/arm64/assembler-arm64.h b/src/arm64/assembler-arm64.h |
index dda3d24c9ffb7b33e71f4c97da4ef7810fdefcff..9df65c31a83a6933029f2ce0e71694a7d6bda4c9 100644 |
--- a/src/arm64/assembler-arm64.h |
+++ b/src/arm64/assembler-arm64.h |
@@ -869,7 +869,8 @@ class Assembler : public AssemblerBase { |
static const int kPatchDebugBreakSlotAddressOffset = 0; |
// Number of instructions necessary to be able to later patch it to a call. |
- // See Debug::GenerateSlot() and BreakLocationIterator::SetDebugBreakAtSlot(). |
+ // See DebugCodegen::GenerateSlot() and |
+ // BreakLocationIterator::SetDebugBreakAtSlot(). |
static const int kDebugBreakSlotInstructions = 4; |
static const int kDebugBreakSlotLength = |
kDebugBreakSlotInstructions * kInstructionSize; |
@@ -935,9 +936,9 @@ class Assembler : public AssemblerBase { |
// function, compiled with and without debugger support (see for example |
// Debug::PrepareForBreakPoints()). |
// Compiling functions with debugger support generates additional code |
- // (Debug::GenerateSlot()). This may affect the emission of the pools and |
- // cause the version of the code with debugger support to have pools generated |
- // in different places. |
+ // (DebugCodegen::GenerateSlot()). This may affect the emission of the pools |
+ // and cause the version of the code with debugger support to have pools |
+ // generated in different places. |
// Recording the position and size of emitted pools allows to correctly |
// compute the offset mappings between the different versions of a function in |
// all situations. |