Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 536e5cde283ff3ada68205fdee52ef6012c499aa..c9f06e4e008819a27c7545ec121cc9e46cf5b5d6 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -223,10 +223,9 @@ bool Interpreter::IsDispatchTableInitialized() { |
bool Interpreter::ShouldInitializeDispatchTable() { |
if (FLAG_trace_ignition || FLAG_trace_ignition_codegen || |
- FLAG_trace_ignition_dispatches || FLAG_debug_code) { |
+ FLAG_trace_ignition_dispatches) { |
// Regenerate table to add bytecode tracing operations, print the assembly |
- // code generated by TurboFan, instrument handlers with dispatch counters, |
- // or insert debugging code into the bytecode handlers. |
+ // code generated by TurboFan or instrument handlers with dispatch counters. |
return true; |
} |
return !IsDispatchTableInitialized(); |