| Index: src/interpreter/interpreter.cc
|
| diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
|
| index 53c610a218758476fedd80d8c59471ca19d9d926..1c5413fd3b8101db036092b3706dd2bb2ef0c4e8 100644
|
| --- a/src/interpreter/interpreter.cc
|
| +++ b/src/interpreter/interpreter.cc
|
| @@ -111,8 +111,9 @@ bool Interpreter::MakeBytecode(CompilationInfo* info) {
|
| }
|
|
|
| bool Interpreter::IsDispatchTableInitialized() {
|
| - if (FLAG_trace_ignition) {
|
| - // Regenerate table to add bytecode tracing operations.
|
| + if (FLAG_trace_ignition || FLAG_trace_ignition_codegen) {
|
| + // Regenerate table to add bytecode tracing operations
|
| + // or to print the assembly code generated by TurboFan.
|
| return false;
|
| }
|
| return dispatch_table_[0] != nullptr;
|
|
|