| Index: runtime/vm/flow_graph_allocator.cc
|
| diff --git a/runtime/vm/flow_graph_allocator.cc b/runtime/vm/flow_graph_allocator.cc
|
| index d4fd49880fb25b5746c7210346108c43f274e6f5..4778d7a79642f465bf4e7b4afb9590679d607dfa 100644
|
| --- a/runtime/vm/flow_graph_allocator.cc
|
| +++ b/runtime/vm/flow_graph_allocator.cc
|
| @@ -156,8 +156,9 @@ void SSALivenessAnalysis::ComputeInitialSets() {
|
| // TODO(vegorov) remove this once we have ported all necessary
|
| // instructions to DBC.
|
| if (!current->HasLocs()) {
|
| - graph_entry_->parsed_function().Bailout("SSALivenessAnalysis",
|
| - current->ToCString());
|
| + const char* msg = "SSALivenessAnalysis::ComputeInitialSets";
|
| + NOT_IN_PRODUCT(msg = current->ToCString());
|
| + graph_entry_->parsed_function().Bailout("SSALivenessAnalysis", msg);
|
| }
|
| #endif
|
|
|
|
|