| Index: runtime/vm/flow_graph_type_propagator.cc | 
| =================================================================== | 
| --- runtime/vm/flow_graph_type_propagator.cc	(revision 26375) | 
| +++ runtime/vm/flow_graph_type_propagator.cc	(working copy) | 
| @@ -65,7 +65,7 @@ | 
| while (!worklist_.is_empty()) { | 
| Definition* def = RemoveLastFromWorklist(); | 
| if (FLAG_trace_type_propagation) { | 
| -      OS::Print("recomputing type of v%"Pd": %s\n", | 
| +      OS::Print("recomputing type of v%" Pd ": %s\n", | 
| def->ssa_temp_index(), | 
| def->Type()->ToCString()); | 
| } | 
| @@ -234,7 +234,7 @@ | 
| value->SetReachingType(type); | 
|  | 
| if (FLAG_trace_type_propagation) { | 
| -    OS::Print("reaching type to v%"Pd" for v%"Pd" is %s\n", | 
| +    OS::Print("reaching type to v%" Pd " for v%" Pd " is %s\n", | 
| value->instruction()->IsDefinition() ? | 
| value->instruction()->AsDefinition()->ssa_temp_index() : -1, | 
| value->definition()->ssa_temp_index(), | 
| @@ -646,7 +646,7 @@ | 
| CompileType result = CompileType::None(); | 
| for (intptr_t i = 0; i < InputCount(); i++) { | 
| if (FLAG_trace_type_propagation) { | 
| -      OS::Print("  phi %"Pd" input %"Pd": v%"Pd" has reaching type %s\n", | 
| +      OS::Print("  phi %" Pd " input %" Pd ": v%" Pd " has reaching type %s\n", | 
| ssa_temp_index(), | 
| i, | 
| InputAt(i)->definition()->ssa_temp_index(), | 
|  |