Index: src/x64/assembler-x64.cc |
diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc |
index 1c5b103c70ab19187ac3a9bfac9783d541680072..17170dab961f0fc4870a98d11e38e7280850bdac 100644 |
--- a/src/x64/assembler-x64.cc |
+++ b/src/x64/assembler-x64.cc |
@@ -3119,8 +3119,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)); |
} |