| Index: runtime/vm/flow_graph_compiler.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler.cc (revision 35767)
|
| +++ runtime/vm/flow_graph_compiler.cc (working copy)
|
| @@ -308,8 +308,9 @@
|
| // Compile all successors until an exit, branch, or a block entry.
|
| for (ForwardInstructionIterator it(entry); !it.Done(); it.Advance()) {
|
| Instruction* instr = it.Current();
|
| - if (FLAG_code_comments &&
|
| - (FLAG_disassemble || FLAG_disassemble_optimized)) {
|
| + if (FLAG_code_comments ||
|
| + FLAG_disassemble ||
|
| + FLAG_disassemble_optimized) {
|
| if (FLAG_source_lines) {
|
| EmitSourceLine(instr);
|
| }
|
|
|