Index: src/x64/assembler-x64.cc |
diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc |
index 697f6cd403fd46fd238a5de31f41f782144a1189..9643838705f1b80a85758d7a7a29351345ce0031 100644 |
--- a/src/x64/assembler-x64.cc |
+++ b/src/x64/assembler-x64.cc |
@@ -3114,8 +3114,8 @@ void Assembler::RecordDebugBreakSlot() { |
} |
-void Assembler::RecordComment(const char* msg) { |
- if (FLAG_code_comments) { |
+void Assembler::RecordComment(const char* msg, bool force) { |
+ if (FLAG_code_comments || force) { |
EnsureSpace ensure_space(this); |
RecordRelocInfo(RelocInfo::COMMENT, reinterpret_cast<intptr_t>(msg)); |
} |