| Index: src/assembler.cc | 
| diff --git a/src/assembler.cc b/src/assembler.cc | 
| index 0a049a4bbc6435385076e0ad4fc6778b272825ec..54d3f6d2bf3470b113d5a3cfe3a0f787160f5541 100644 | 
| --- a/src/assembler.cc | 
| +++ b/src/assembler.cc | 
| @@ -826,7 +826,7 @@ void RelocInfo::Print(Isolate* isolate, FILE* out) { | 
| PrintF(out, " (%s)  (%p)", Code::Kind2String(code->kind()), | 
| target_address()); | 
| if (rmode_ == CODE_TARGET_WITH_ID) { | 
| -      PrintF(" (id=%d)", static_cast<int>(data_)); | 
| +      PrintF(out, " (id=%d)", static_cast<int>(data_)); | 
| } | 
| } else if (IsPosition(rmode_)) { | 
| PrintF(out, "  (%" V8_PTR_PREFIX "d)", data()); | 
|  |